Add prototype for g_completion_complete_utf8().
authorManish Singh <yosh@gimp.org>
Thu, 5 Feb 2004 01:58:47 +0000 (01:58 +0000)
committerManish Singh <yosh@src.gnome.org>
Thu, 5 Feb 2004 01:58:47 +0000 (01:58 +0000)
Wed Feb  4 17:58:51 2004  Manish Singh  <yosh@gimp.org>

        * glib/gcompletion.h: Add prototype for g_completion_complete_utf8().

        * tests/completion-test.c: #include <string.h>

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/gcompletion.h
tests/completion-test.c

index a7e02d71fbccfd8dccc9608d9b043c8ee325e46e..0cc50ca20e91e2c1b519a23df380d045111e4135 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Wed Feb  4 17:58:51 2004  Manish Singh  <yosh@gimp.org>
+
+       * glib/gcompletion.h: Add prototype for g_completion_complete_utf8().
+
+       * tests/completion-test.c: #include <string.h>
+
 2004-02-05  Tor Lillqvist  <tml@iki.fi>
 
        * glib/glib.def: Add g_completion_complete_utf8.
index a7e02d71fbccfd8dccc9608d9b043c8ee325e46e..0cc50ca20e91e2c1b519a23df380d045111e4135 100644 (file)
@@ -1,3 +1,9 @@
+Wed Feb  4 17:58:51 2004  Manish Singh  <yosh@gimp.org>
+
+       * glib/gcompletion.h: Add prototype for g_completion_complete_utf8().
+
+       * tests/completion-test.c: #include <string.h>
+
 2004-02-05  Tor Lillqvist  <tml@iki.fi>
 
        * glib/glib.def: Add g_completion_complete_utf8.
index a7e02d71fbccfd8dccc9608d9b043c8ee325e46e..0cc50ca20e91e2c1b519a23df380d045111e4135 100644 (file)
@@ -1,3 +1,9 @@
+Wed Feb  4 17:58:51 2004  Manish Singh  <yosh@gimp.org>
+
+       * glib/gcompletion.h: Add prototype for g_completion_complete_utf8().
+
+       * tests/completion-test.c: #include <string.h>
+
 2004-02-05  Tor Lillqvist  <tml@iki.fi>
 
        * glib/glib.def: Add g_completion_complete_utf8.
index a7e02d71fbccfd8dccc9608d9b043c8ee325e46e..0cc50ca20e91e2c1b519a23df380d045111e4135 100644 (file)
@@ -1,3 +1,9 @@
+Wed Feb  4 17:58:51 2004  Manish Singh  <yosh@gimp.org>
+
+       * glib/gcompletion.h: Add prototype for g_completion_complete_utf8().
+
+       * tests/completion-test.c: #include <string.h>
+
 2004-02-05  Tor Lillqvist  <tml@iki.fi>
 
        * glib/glib.def: Add g_completion_complete_utf8.
index a7e02d71fbccfd8dccc9608d9b043c8ee325e46e..0cc50ca20e91e2c1b519a23df380d045111e4135 100644 (file)
@@ -1,3 +1,9 @@
+Wed Feb  4 17:58:51 2004  Manish Singh  <yosh@gimp.org>
+
+       * glib/gcompletion.h: Add prototype for g_completion_complete_utf8().
+
+       * tests/completion-test.c: #include <string.h>
+
 2004-02-05  Tor Lillqvist  <tml@iki.fi>
 
        * glib/glib.def: Add g_completion_complete_utf8.
index a7e02d71fbccfd8dccc9608d9b043c8ee325e46e..0cc50ca20e91e2c1b519a23df380d045111e4135 100644 (file)
@@ -1,3 +1,9 @@
+Wed Feb  4 17:58:51 2004  Manish Singh  <yosh@gimp.org>
+
+       * glib/gcompletion.h: Add prototype for g_completion_complete_utf8().
+
+       * tests/completion-test.c: #include <string.h>
+
 2004-02-05  Tor Lillqvist  <tml@iki.fi>
 
        * glib/glib.def: Add g_completion_complete_utf8.
index 0a48e73fac26161052e22c5429c562838cb7416d..8adb231370c0c788d263e87a1f462d25b3f141b8 100644 (file)
@@ -52,18 +52,21 @@ struct _GCompletion
   GCompletionStrncmpFunc strncmp_func;
 };
 
-GCompletion* g_completion_new          (GCompletionFunc func);
-void         g_completion_add_items    (GCompletion*    cmp,
-                                        GList*          items);
-void         g_completion_remove_items (GCompletion*    cmp,
-                                        GList*          items);
-void         g_completion_clear_items  (GCompletion*    cmp);
-GList*       g_completion_complete     (GCompletion*    cmp,
-                                        const gchar*    prefix,
-                                        gchar**         new_prefix);
-void         g_completion_set_compare (GCompletion *cmp,
-                                      GCompletionStrncmpFunc strncmp_func);
-void         g_completion_free         (GCompletion*    cmp);
+GCompletion* g_completion_new           (GCompletionFunc func);
+void         g_completion_add_items     (GCompletion*    cmp,
+                                         GList*          items);
+void         g_completion_remove_items  (GCompletion*    cmp,
+                                         GList*          items);
+void         g_completion_clear_items   (GCompletion*    cmp);
+GList*       g_completion_complete      (GCompletion*    cmp,
+                                         const gchar*    prefix,
+                                         gchar**         new_prefix);
+GList*       g_completion_complete_utf8 (GCompletion  *cmp,
+                                         const gchar*    prefix,
+                                         gchar**         new_prefix);
+void         g_completion_set_compare   (GCompletion *cmp,
+                                        GCompletionStrncmpFunc strncmp_func);
+void         g_completion_free          (GCompletion*    cmp);
 
 G_END_DECLS
 
index 88053664578ff9bb35cf4f2fae0040ff5a6bbf47..50cfc95da1c2c66ffaaacf4b73d72ae821f9f54c 100644 (file)
@@ -23,7 +23,9 @@
  * files for a list of changes.  These files are distributed with
  * GLib at ftp://ftp.gtk.org/pub/gtk/. 
  */
-#include <glib.h>
+#include <string.h>
+
+#include "glib.h"
 
 int main (int argc, char *argv[])
 {