New test.
[mono.git] / support / string.c
1 /*
2  * <string.h> wrapper functions.
3  *
4  * Authors:
5  *   Jonathan Pryor (jonpryor@vt.edu)
6  *
7  * Copyright (C) 2005 Jonathan Pryor
8  */
9
10 #include <string.h>
11
12 #include "mph.h"
13
14 G_BEGIN_DECLS
15
16 guint64
17 Mono_Posix_Stdlib_strlen (void* p)
18 {
19         return strlen ((const char*) p);
20 }
21
22 G_END_DECLS
23
24 /*
25  * vim: noexpandtab
26  */