mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-07-30 05:43:28 +02: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:
@@ -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++;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user