repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2006-12-03 Miguel de Icaza <miguel@novell.com>
[mono-project.git]
/
support
/
string.c
blob
66b1d5bfd96d2a9b52f84e3a6fbe30bd389208cd
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
*/