Welcome to mirror list, hosted at ThFree Co, Russian Federation.

string.c « support - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 66b1d5bfd96d2a9b52f84e3a6fbe30bd389208cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 * <string.h> wrapper functions.
 *
 * Authors:
 *   Jonathan Pryor (jonpryor@vt.edu)
 *
 * Copyright (C) 2005 Jonathan Pryor
 */

#include <string.h>

#include "map.h"
#include "mph.h"

G_BEGIN_DECLS

guint64
Mono_Posix_Stdlib_strlen (void* p)
{
	return strlen ((const char*) p);
}

G_END_DECLS

/*
 * vim: noexpandtab
 */