[runtime] Remove the usage of MONO_INTERNAL, use MONO_API to mark exported functions...
[mono.git] / mono / metadata / string-icalls.h
1 #ifndef _MONO_CLI_STRING_ICALLS_H_
2 #define _MONO_CLI_STRING_ICALLS_H_
3
4 /*
5  * string-icalls.h: String internal calls for the corlib
6  *
7  * Author:
8  *   Patrik Torstensson (patrik.torstensson@labs2.com)
9  *
10  * (C) 2001 Ximian, Inc.
11  */
12
13 #include <glib.h>
14 #include <mono/metadata/class.h>
15 #include <mono/metadata/object.h>
16 #include "mono/utils/mono-compiler.h"
17
18 void
19 ves_icall_System_String_ctor_RedirectToCreateString (void);
20
21 MonoString *
22 ves_icall_System_String_InternalAllocateStr (gint32 length);
23
24 MonoString  *
25 ves_icall_System_String_InternalIntern (MonoString *str);
26
27 MonoString * 
28 ves_icall_System_String_InternalIsInterned (MonoString *str);
29
30 int
31 ves_icall_System_String_GetLOSLimit (void);
32
33 void
34 ves_icall_System_String_InternalSetLength (MonoString *str, gint32 new_length);
35
36 #endif /* _MONO_CLI_STRING_ICALLS_H_ */