+Sun Jul 30 16:54:13 2000 Owen Taylor <otaylor@redhat.com>
+
+ * gunicode.h: Fix stray character
+
+ * gutf8.c (g_unichar_to_utf8): Allow outbuf to be NULL, in
+ which case we just compute the length.
+
2000-07-31 Havoc Pennington <hp@redhat.com>
* Makefile.am (EXTRA_DIST): forgot to add .pc.in to EXTRA_DIST
+Sun Jul 30 16:54:13 2000 Owen Taylor <otaylor@redhat.com>
+
+ * gunicode.h: Fix stray character
+
+ * gutf8.c (g_unichar_to_utf8): Allow outbuf to be NULL, in
+ which case we just compute the length.
+
2000-07-31 Havoc Pennington <hp@redhat.com>
* Makefile.am (EXTRA_DIST): forgot to add .pc.in to EXTRA_DIST
+Sun Jul 30 16:54:13 2000 Owen Taylor <otaylor@redhat.com>
+
+ * gunicode.h: Fix stray character
+
+ * gutf8.c (g_unichar_to_utf8): Allow outbuf to be NULL, in
+ which case we just compute the length.
+
2000-07-31 Havoc Pennington <hp@redhat.com>
* Makefile.am (EXTRA_DIST): forgot to add .pc.in to EXTRA_DIST
+Sun Jul 30 16:54:13 2000 Owen Taylor <otaylor@redhat.com>
+
+ * gunicode.h: Fix stray character
+
+ * gutf8.c (g_unichar_to_utf8): Allow outbuf to be NULL, in
+ which case we just compute the length.
+
2000-07-31 Havoc Pennington <hp@redhat.com>
* Makefile.am (EXTRA_DIST): forgot to add .pc.in to EXTRA_DIST
+Sun Jul 30 16:54:13 2000 Owen Taylor <otaylor@redhat.com>
+
+ * gunicode.h: Fix stray character
+
+ * gutf8.c (g_unichar_to_utf8): Allow outbuf to be NULL, in
+ which case we just compute the length.
+
2000-07-31 Havoc Pennington <hp@redhat.com>
* Makefile.am (EXTRA_DIST): forgot to add .pc.in to EXTRA_DIST
+Sun Jul 30 16:54:13 2000 Owen Taylor <otaylor@redhat.com>
+
+ * gunicode.h: Fix stray character
+
+ * gutf8.c (g_unichar_to_utf8): Allow outbuf to be NULL, in
+ which case we just compute the length.
+
2000-07-31 Havoc Pennington <hp@redhat.com>
* Makefile.am (EXTRA_DIST): forgot to add .pc.in to EXTRA_DIST
+Sun Jul 30 16:54:13 2000 Owen Taylor <otaylor@redhat.com>
+
+ * gunicode.h: Fix stray character
+
+ * gutf8.c (g_unichar_to_utf8): Allow outbuf to be NULL, in
+ which case we just compute the length.
+
2000-07-31 Havoc Pennington <hp@redhat.com>
* Makefile.am (EXTRA_DIST): forgot to add .pc.in to EXTRA_DIST
+Sun Jul 30 16:54:13 2000 Owen Taylor <otaylor@redhat.com>
+
+ * gunicode.h: Fix stray character
+
+ * gutf8.c (g_unichar_to_utf8): Allow outbuf to be NULL, in
+ which case we just compute the length.
+
2000-07-31 Havoc Pennington <hp@redhat.com>
* Makefile.am (EXTRA_DIST): forgot to add .pc.in to EXTRA_DIST
gboolean g_unichar_isalnum (gunichar c);
gboolean g_unichar_isalpha (gunichar c);
gboolean g_unichar_iscntrl (gunichar c);
-gboolean g_unicphar_isdigit (gunichar c);
+gboolean g_unichar_isdigit (gunichar c);
gboolean g_unichar_isgraph (gunichar c);
gboolean g_unichar_islower (gunichar c);
gboolean g_unichar_isprint (gunichar c);
(Result) <<= 6; \
(Result) |= ((Chars)[(Count)] & 0x3f); \
}
-
gchar g_utf8_skip[256] = {
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
* g_unichar_to_utf8:
* @ch: a ISO10646 character code
* @out: output buffer, must have at least 6 bytes of space.
+ * If %NULL, the length will be computed and returned
+ * and nothing will be written to @out.
*
* Convert a single character to utf8
*
len = 6;
}
- for (i = len - 1; i > 0; --i)
+ if (outbuf)
{
- outbuf[i] = (c & 0x3f) | 0x80;
- c >>= 6;
+ for (i = len - 1; i > 0; --i)
+ {
+ outbuf[i] = (c & 0x3f) | 0x80;
+ c >>= 6;
+ }
+ outbuf[0] = c | first;
}
- outbuf[0] = c | first;
return len;
}
gboolean g_unichar_isalnum (gunichar c);
gboolean g_unichar_isalpha (gunichar c);
gboolean g_unichar_iscntrl (gunichar c);
-gboolean g_unicphar_isdigit (gunichar c);
+gboolean g_unichar_isdigit (gunichar c);
gboolean g_unichar_isgraph (gunichar c);
gboolean g_unichar_islower (gunichar c);
gboolean g_unichar_isprint (gunichar c);
(Result) <<= 6; \
(Result) |= ((Chars)[(Count)] & 0x3f); \
}
-
gchar g_utf8_skip[256] = {
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
* g_unichar_to_utf8:
* @ch: a ISO10646 character code
* @out: output buffer, must have at least 6 bytes of space.
+ * If %NULL, the length will be computed and returned
+ * and nothing will be written to @out.
*
* Convert a single character to utf8
*
len = 6;
}
- for (i = len - 1; i > 0; --i)
+ if (outbuf)
{
- outbuf[i] = (c & 0x3f) | 0x80;
- c >>= 6;
+ for (i = len - 1; i > 0; --i)
+ {
+ outbuf[i] = (c & 0x3f) | 0x80;
+ c >>= 6;
+ }
+ outbuf[0] = c | first;
}
- outbuf[0] = c | first;
return len;
}