Merge pull request #2202 from mono/revert-2090-mono-4.2.0-branch-bug25480
[mono-project.git] / mono / metadata / string-icalls.h
blobedc43f2e8edd341f56be34a3c218328adc9a7c1d
1 #ifndef _MONO_CLI_STRING_ICALLS_H_
2 #define _MONO_CLI_STRING_ICALLS_H_
4 /*
5 * string-icalls.h: String internal calls for the corlib
7 * Author:
8 * Patrik Torstensson (patrik.torstensson@labs2.com)
10 * (C) 2001 Ximian, Inc.
13 #include <glib.h>
14 #include <mono/metadata/class.h>
15 #include <mono/metadata/object.h>
16 #include "mono/utils/mono-compiler.h"
18 void
19 ves_icall_System_String_ctor_RedirectToCreateString (void);
21 MonoString *
22 ves_icall_System_String_InternalAllocateStr (gint32 length);
24 MonoString *
25 ves_icall_System_String_InternalIntern (MonoString *str);
27 MonoString *
28 ves_icall_System_String_InternalIsInterned (MonoString *str);
30 int
31 ves_icall_System_String_GetLOSLimit (void);
33 #endif /* _MONO_CLI_STRING_ICALLS_H_ */