+2001-09-17 Darin Adler <darin@bentspoon.com>
+
+ * glib/tmpl/string_utils.sgml: Fix a typo and change
+ documentation for g_ascii_isdigit and g_ascii_isxdigit
+ to reflect the fact that the standard isdigit and
+ isxdigit are already locale-independent.
+
Wed Sep 5 05:24:07 2001 Tim Janik <timj@gtk.org>
* gobject/tmpl/gboxed.sgml: documented some functions.
non-ASCII character in.
</para>
-@c: any characted
+@c: any character
@Returns: %TRUE if @c is an ASCII alphanumeric character
non-ASCII character in.
</para>
-@c: any characted
+@c: any character
@Returns: %TRUE if @c is an ASCII alphabetic character
non-ASCII character in.
</para>
-@c: any characted
+@c: any character
@Returns: %TRUE if @c is an ASCII control character.
Determines whether a character is digit (0-9).
</para>
<para>
-Unlike the standard C library isdigit function, this only
-recognizes standard ASCII digits and ignores the locale, returning
-%FALSE for all non-ASCII characters. Also unlike the standard
-library function, this takes a char, not an int, so don't call it
+Unlike the standard C library isdigit function,
+this takes a char, not an int, so don't call it
on EOF but no need to cast to guchar before passing a possibly
non-ASCII character in.
</para>
-@c: any characted
+@c: any character
@Returns: %TRUE if @c is an ASCII digit.
non-ASCII character in.
</para>
-@c: any characted
+@c: any character
@Returns: %TRUE if @c is an ASCII printing character other than space.
a possibly non-ASCII character in.
</para>
-@c: any characted
+@c: any character
@Returns: %TRUE if @c is an ASCII lower case letter
non-ASCII character in.
</para>
-@c: any characted
+@c: any character
@Returns: %TRUE if @c is an ASCII printing character.
non-ASCII character in.
</para>
-@c: any characted
+@c: any character
@Returns: %TRUE if @c is an ASCII punctuation character.
non-ASCII character in.
</para>
-@c: any characted
+@c: any character
@Returns: %TRUE if @c is an ASCII white-space character
a possibly non-ASCII character in.
</para>
-@c: any characted
+@c: any character
@Returns: %TRUE if @c is an ASCII upper case letter
Determines whether a character is a hexadecimal-digit character.
</para>
<para>
-Unlike the standard C library isxdigit function, this only
-recognizes standard ASCII hexadecimal digits and ignores the
-locale, returning %FALSE for all non-ASCII characters. Also unlike
-the standard library function, this takes a char, not an int, so
+Unlike the standard C library isxdigit function,
+this takes a char, not an int, so
don't call it on EOF but no need to cast to guchar before passing a
possibly non-ASCII character in.
</para>
-@c: any characted
+@c: any character
@Returns: %TRUE if @c is an ASCII hexadecimal-digit character.