Merge pull request #5714 from alexischr/update_bockbuild
[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 "map.h"
13 #include "mph.h"
14
15 G_BEGIN_DECLS
16
17 guint64
18 Mono_Posix_Stdlib_strlen (void* p)
19 {
20         return strlen ((const char*) p);
21 }
22
23 G_END_DECLS
24
25 /*
26  * vim: noexpandtab
27  */