diff options
author | Owen Taylor <otaylor@src.gnome.org> | 1998-03-05 06:46:41 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 1998-03-05 06:46:41 +0000 |
commit | 1ac59c103de66366bd5aedd4f8a5921ac6a755a9 (patch) | |
tree | 24eb4ceea9add98102ee0995470ff984189b2512 /glib | |
parent | ba55b3f94ba99f24b424c879eaeafe47b932f189 (diff) | |
download | gtk+-1ac59c103de66366bd5aedd4f8a5921ac6a755a9.tar.gz |
Old stuff that didn't get commited. (owt)
* gtk/gtkinputdialog.h (struct _GtkInputDialogClass):
removed 'gpointer data' arguments from default handler
structures.
* gtk/gtktreeitem.[ch]: Keep track of separate +/- pixmaps
for each colormap, removed the idle hack.
* testglib.c: Remove trailing ; after functions
----------------------------------------------------------------------
Diffstat (limited to 'glib')
-rw-r--r-- | glib/testglib.c | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/glib/testglib.c b/glib/testglib.c index 4dc782b07a..2763e85ce8 100644 --- a/glib/testglib.c +++ b/glib/testglib.c @@ -15,6 +15,7 @@ * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ + #include <stdio.h> #include <string.h> #include "glib.h" @@ -49,7 +50,7 @@ my_list_compare_one (gpointer a, gpointer b) gint one = *((gint*)a); gint two = *((gint*)b); return one-two; -}; +} gint my_list_compare_two (gpointer a, gpointer b) @@ -57,7 +58,7 @@ my_list_compare_two (gpointer a, gpointer b) gint one = *((gint*)a); gint two = *((gint*)b); return two-one; -}; +} /* void my_list_print (gpointer a, gpointer b) @@ -86,6 +87,14 @@ my_traverse (gpointer key, return FALSE; } +void +print_compare (gchar *a, + gchar *b) +{ + g_print ("%s <=> %s : %d\n", a, b, g_strcasecmp(a,b)); + g_print ("%s <=> %s : %d\n", b, a, g_strcasecmp(b,a)); +} + int main (int argc, char *argv[]) @@ -386,6 +395,10 @@ main (int argc, g_print ("ok\n"); + g_print ("checking g_strcasecmp...\n"); + print_compare ("Schlo", "Schlo"); + print_compare ("ffchen", "fchen"); + /* g_debug (argv[0]); */ |