mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-11 15:06:14 +01:00
Fix typo in g_string_ncasecmp macro (by me). Add b_string_strncasecmp
Fri Apr 23 14:29:25 BST 1999 Tony Gale <gale@gtk.org> * glib.h: Fix typo in g_string_ncasecmp macro (by me). Add b_string_strncasecmp macro.
This commit is contained in:
parent
737d9c6714
commit
0269749a67
@ -1,3 +1,8 @@
|
||||
Fri Apr 23 14:29:25 BST 1999 Tony Gale <gale@gtk.org>
|
||||
|
||||
* glib.h: Fix typo in g_string_ncasecmp macro (by me).
|
||||
Add b_string_strncasecmp macro.
|
||||
|
||||
1999-04-22 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* gutils.c (g_get_any_init): use sysconf (_SC_GETPW_R_SIZE_MAX) as
|
||||
|
@ -1,3 +1,8 @@
|
||||
Fri Apr 23 14:29:25 BST 1999 Tony Gale <gale@gtk.org>
|
||||
|
||||
* glib.h: Fix typo in g_string_ncasecmp macro (by me).
|
||||
Add b_string_strncasecmp macro.
|
||||
|
||||
1999-04-22 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* gutils.c (g_get_any_init): use sysconf (_SC_GETPW_R_SIZE_MAX) as
|
||||
|
@ -1,3 +1,8 @@
|
||||
Fri Apr 23 14:29:25 BST 1999 Tony Gale <gale@gtk.org>
|
||||
|
||||
* glib.h: Fix typo in g_string_ncasecmp macro (by me).
|
||||
Add b_string_strncasecmp macro.
|
||||
|
||||
1999-04-22 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* gutils.c (g_get_any_init): use sysconf (_SC_GETPW_R_SIZE_MAX) as
|
||||
|
@ -1,3 +1,8 @@
|
||||
Fri Apr 23 14:29:25 BST 1999 Tony Gale <gale@gtk.org>
|
||||
|
||||
* glib.h: Fix typo in g_string_ncasecmp macro (by me).
|
||||
Add b_string_strncasecmp macro.
|
||||
|
||||
1999-04-22 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* gutils.c (g_get_any_init): use sysconf (_SC_GETPW_R_SIZE_MAX) as
|
||||
|
@ -1,3 +1,8 @@
|
||||
Fri Apr 23 14:29:25 BST 1999 Tony Gale <gale@gtk.org>
|
||||
|
||||
* glib.h: Fix typo in g_string_ncasecmp macro (by me).
|
||||
Add b_string_strncasecmp macro.
|
||||
|
||||
1999-04-22 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* gutils.c (g_get_any_init): use sysconf (_SC_GETPW_R_SIZE_MAX) as
|
||||
|
@ -1,3 +1,8 @@
|
||||
Fri Apr 23 14:29:25 BST 1999 Tony Gale <gale@gtk.org>
|
||||
|
||||
* glib.h: Fix typo in g_string_ncasecmp macro (by me).
|
||||
Add b_string_strncasecmp macro.
|
||||
|
||||
1999-04-22 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* gutils.c (g_get_any_init): use sysconf (_SC_GETPW_R_SIZE_MAX) as
|
||||
|
@ -1,3 +1,8 @@
|
||||
Fri Apr 23 14:29:25 BST 1999 Tony Gale <gale@gtk.org>
|
||||
|
||||
* glib.h: Fix typo in g_string_ncasecmp macro (by me).
|
||||
Add b_string_strncasecmp macro.
|
||||
|
||||
1999-04-22 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* gutils.c (g_get_any_init): use sysconf (_SC_GETPW_R_SIZE_MAX) as
|
||||
|
@ -1,3 +1,8 @@
|
||||
Fri Apr 23 14:29:25 BST 1999 Tony Gale <gale@gtk.org>
|
||||
|
||||
* glib.h: Fix typo in g_string_ncasecmp macro (by me).
|
||||
Add b_string_strncasecmp macro.
|
||||
|
||||
1999-04-22 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* gutils.c (g_get_any_init): use sysconf (_SC_GETPW_R_SIZE_MAX) as
|
||||
|
3
glib.h
3
glib.h
@ -1712,11 +1712,12 @@ typedef enum
|
||||
g_string_str(b), n))
|
||||
#define g_string_casecmp(a,b) (g_strcasecmp(g_string_str(a), \
|
||||
g_string_str(b)))
|
||||
#define g_string_ncasecmp(a,b) (g_strncasecmp(g_string_str(a), \
|
||||
#define g_string_ncasecmp(a,b,n) (g_strncasecmp(g_string_str(a), \
|
||||
g_string_str(b), n))
|
||||
|
||||
#define g_string_strcmp(a,b) (strcmp(g_string_str(a), b))
|
||||
#define g_string_strcasecmp(a,b) (g_strcasecmp(g_string_str(a), b))
|
||||
#define g_string_strncasecmp(a,b,n) (g_strncasecmp(g_string_str(a), b, n))
|
||||
|
||||
GString* g_string_new (const gchar *init);
|
||||
GString* g_string_sized_new (guint dfl_size);
|
||||
|
@ -1712,11 +1712,12 @@ typedef enum
|
||||
g_string_str(b), n))
|
||||
#define g_string_casecmp(a,b) (g_strcasecmp(g_string_str(a), \
|
||||
g_string_str(b)))
|
||||
#define g_string_ncasecmp(a,b) (g_strncasecmp(g_string_str(a), \
|
||||
#define g_string_ncasecmp(a,b,n) (g_strncasecmp(g_string_str(a), \
|
||||
g_string_str(b), n))
|
||||
|
||||
#define g_string_strcmp(a,b) (strcmp(g_string_str(a), b))
|
||||
#define g_string_strcasecmp(a,b) (g_strcasecmp(g_string_str(a), b))
|
||||
#define g_string_strncasecmp(a,b,n) (g_strncasecmp(g_string_str(a), b, n))
|
||||
|
||||
GString* g_string_new (const gchar *init);
|
||||
GString* g_string_sized_new (guint dfl_size);
|
||||
|
Loading…
Reference in New Issue
Block a user