Bump version to 2.7.1
[mono-project/dkf.git] / mono / metadata / string-icalls.h
blobe4cd3c2fb195fe815597818b682e24b5cf351faf
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 <mono/metadata/class.h>
14 #include <mono/metadata/object.h>
15 #include "mono/utils/mono-compiler.h"
17 void
18 ves_icall_System_String_ctor_RedirectToCreateString (void) MONO_INTERNAL;
20 MonoArray *
21 ves_icall_System_String_InternalSplit (MonoString *me, MonoArray *separator, gint32 count, gint32 options) MONO_INTERNAL;
23 MonoString *
24 ves_icall_System_String_InternalAllocateStr (gint32 length) MONO_INTERNAL;
26 MonoString *
27 ves_icall_System_String_InternalIntern (MonoString *str) MONO_INTERNAL;
29 MonoString *
30 ves_icall_System_String_InternalIsInterned (MonoString *str) MONO_INTERNAL;
32 int
33 ves_icall_System_String_GetLOSLimit (void) MONO_INTERNAL;
35 #endif /* _MONO_CLI_STRING_ICALLS_H_ */