mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
to match g_strcasecmp, check if it is lower/upper before converting to
Mon Jun 4 16:02:57 2001 Owen Taylor <otaylor@redhat.com> * gstrfuncs.c (g_strup/strdown): to match g_strcasecmp, check if it is lower/upper before converting to upper/lower [ not required by ISO... ] (#55682, Jon Trowbridge)
This commit is contained in:
parent
2d5776656d
commit
96ba1917d8
@ -1,3 +1,9 @@
|
||||
Mon Jun 4 16:02:57 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gstrfuncs.c (g_strup/strdown): to match g_strcasecmp,
|
||||
check if it is lower/upper before converting to upper/lower
|
||||
[ not required by ISO... ] (#55682, Jon Trowbridge)
|
||||
|
||||
Mon Jun 4 15:59:15 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gunicode.h: Make a bit more standalone by adding include
|
||||
|
@ -1,3 +1,9 @@
|
||||
Mon Jun 4 16:02:57 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gstrfuncs.c (g_strup/strdown): to match g_strcasecmp,
|
||||
check if it is lower/upper before converting to upper/lower
|
||||
[ not required by ISO... ] (#55682, Jon Trowbridge)
|
||||
|
||||
Mon Jun 4 15:59:15 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gunicode.h: Make a bit more standalone by adding include
|
||||
|
@ -1,3 +1,9 @@
|
||||
Mon Jun 4 16:02:57 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gstrfuncs.c (g_strup/strdown): to match g_strcasecmp,
|
||||
check if it is lower/upper before converting to upper/lower
|
||||
[ not required by ISO... ] (#55682, Jon Trowbridge)
|
||||
|
||||
Mon Jun 4 15:59:15 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gunicode.h: Make a bit more standalone by adding include
|
||||
|
@ -1,3 +1,9 @@
|
||||
Mon Jun 4 16:02:57 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gstrfuncs.c (g_strup/strdown): to match g_strcasecmp,
|
||||
check if it is lower/upper before converting to upper/lower
|
||||
[ not required by ISO... ] (#55682, Jon Trowbridge)
|
||||
|
||||
Mon Jun 4 15:59:15 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gunicode.h: Make a bit more standalone by adding include
|
||||
|
@ -1,3 +1,9 @@
|
||||
Mon Jun 4 16:02:57 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gstrfuncs.c (g_strup/strdown): to match g_strcasecmp,
|
||||
check if it is lower/upper before converting to upper/lower
|
||||
[ not required by ISO... ] (#55682, Jon Trowbridge)
|
||||
|
||||
Mon Jun 4 15:59:15 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gunicode.h: Make a bit more standalone by adding include
|
||||
|
@ -1,3 +1,9 @@
|
||||
Mon Jun 4 16:02:57 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gstrfuncs.c (g_strup/strdown): to match g_strcasecmp,
|
||||
check if it is lower/upper before converting to upper/lower
|
||||
[ not required by ISO... ] (#55682, Jon Trowbridge)
|
||||
|
||||
Mon Jun 4 15:59:15 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gunicode.h: Make a bit more standalone by adding include
|
||||
|
@ -1,3 +1,9 @@
|
||||
Mon Jun 4 16:02:57 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gstrfuncs.c (g_strup/strdown): to match g_strcasecmp,
|
||||
check if it is lower/upper before converting to upper/lower
|
||||
[ not required by ISO... ] (#55682, Jon Trowbridge)
|
||||
|
||||
Mon Jun 4 15:59:15 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gunicode.h: Make a bit more standalone by adding include
|
||||
|
@ -1,3 +1,9 @@
|
||||
Mon Jun 4 16:02:57 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gstrfuncs.c (g_strup/strdown): to match g_strcasecmp,
|
||||
check if it is lower/upper before converting to upper/lower
|
||||
[ not required by ISO... ] (#55682, Jon Trowbridge)
|
||||
|
||||
Mon Jun 4 15:59:15 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gunicode.h: Make a bit more standalone by adding include
|
||||
|
@ -974,7 +974,8 @@ g_strdown (gchar *string)
|
||||
|
||||
while (*s)
|
||||
{
|
||||
*s = tolower (*s);
|
||||
if (isupper (*s))
|
||||
*s = tolower (*s);
|
||||
s++;
|
||||
}
|
||||
|
||||
@ -992,7 +993,8 @@ g_strup (gchar *string)
|
||||
|
||||
while (*s)
|
||||
{
|
||||
*s = toupper (*s);
|
||||
if (islower (*s))
|
||||
*s = toupper (*s);
|
||||
s++;
|
||||
}
|
||||
|
||||
|
@ -974,7 +974,8 @@ g_strdown (gchar *string)
|
||||
|
||||
while (*s)
|
||||
{
|
||||
*s = tolower (*s);
|
||||
if (isupper (*s))
|
||||
*s = tolower (*s);
|
||||
s++;
|
||||
}
|
||||
|
||||
@ -992,7 +993,8 @@ g_strup (gchar *string)
|
||||
|
||||
while (*s)
|
||||
{
|
||||
*s = toupper (*s);
|
||||
if (islower (*s))
|
||||
*s = toupper (*s);
|
||||
s++;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user