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