* locales.c
[mono.git] / mono / metadata / unicode.h
index 79a0874c14217d14f67e4b5951597bca901ea4eb..7aa526e39f4b22ef1920035d386d836406747911 100644 (file)
@@ -45,79 +45,7 @@ typedef enum {
        CurrencySymbol          = 26,
        ModifierSymbol          = 27,
        OtherSymbol             = 28,
-       OtherNotAssigned        = 29,
+       OtherNotAssigned        = 29
 } MonoUnicodeCategory;
 
-double 
-ves_icall_System_Char_GetNumericValue    (gunichar2 c);
-
-MonoUnicodeCategory 
-ves_icall_System_Char_GetUnicodeCategory (gunichar2 c);
-
-gboolean 
-ves_icall_System_Char_IsControl          (gunichar2 c);
-
-gboolean 
-ves_icall_System_Char_IsDigit            (gunichar2 c);
-
-gboolean 
-ves_icall_System_Char_IsLetter           (gunichar2 c);
-
-gboolean 
-ves_icall_System_Char_IsLower            (gunichar2 c);
-
-gboolean 
-ves_icall_System_Char_IsUpper            (gunichar2 c);
-
-gboolean 
-ves_icall_System_Char_IsNumber           (gunichar2 c);
-
-gboolean 
-ves_icall_System_Char_IsPunctuation      (gunichar2 c);
-
-gboolean 
-ves_icall_System_Char_IsSeparator        (gunichar2 c);
-
-gboolean 
-ves_icall_System_Char_IsSurrogate        (gunichar2 c);
-
-gboolean 
-ves_icall_System_Char_IsSymbol           (gunichar2 c);
-
-gboolean 
-ves_icall_System_Char_IsWhiteSpace       (gunichar2 c);
-
-gunichar2
-ves_icall_System_Char_ToLower            (gunichar2 c);
-
-gunichar2
-ves_icall_System_Char_ToUpper            (gunichar2 c);
-
-gpointer
-ves_icall_iconv_new_encoder              (MonoString *name, MonoBoolean big_endian);
-
-gpointer
-ves_icall_iconv_new_decoder              (MonoString *name, MonoBoolean big_endian);
-
-void
-ves_icall_iconv_reset                    (gpointer converter);
-
-int
-ves_icall_iconv_get_byte_count           (gpointer converter, MonoArray *chars,
-                                         gint32 index, gint32 count);
-
-int
-ves_icall_iconv_get_bytes                (gpointer converter, MonoArray *chars,
-                                         gint32 charIndex, gint32 charCount,
-                                         MonoArray *bytes, gint32 byteIndex);
-
-int
-ves_icall_iconv_get_char_count           (gpointer converter, MonoArray *bytes,
-                                         gint32 index, gint32 count);
-
-int
-ves_icall_iconv_get_chars                (gpointer converter, MonoArray *bytes,
-                                         gint32 byteIndex, gint32 byteCount,
-                                         MonoArray *chars, gint32 charIndex);
-     
 #endif