2001-04-16  Havoc Pennington  <hp@redhat.com>

        * gqsort.c: docs

        * gfileutils.c: docs

        * gwin32.c: docs fixes

        * gconvert.c: docs

        * guniprop.c: docs

        * gutf8.c: docs
This commit is contained in:
Havoc Pennington
2001-04-16 20:05:25 +00:00
committed by Havoc Pennington
parent cc3956413d
commit 4eab875811
43 changed files with 814 additions and 199 deletions

View File

@@ -1112,7 +1112,7 @@ g_strdelimit (gchar *string,
gchar*
g_strcanon (gchar *string,
const gchar *valid_chars,
gchar subsitutor)
gchar substitutor)
{
register gchar *c;
@@ -1122,7 +1122,7 @@ g_strcanon (gchar *string,
for (c = string; *c; c++)
{
if (!strchr (valid_chars, *c))
*c = subsitutor;
*c = substitutor;
}
return string;