Improve docs
authorMatthias Clasen <matthiasc@src.gnome.org>
Tue, 14 Feb 2006 13:15:40 +0000 (13:15 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Tue, 14 Feb 2006 13:15:40 +0000 (13:15 +0000)
ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
glib/gstrfuncs.c

index 86b9686672cafe962aa6f9a63c1b1ab83716f811..715f75626aa6b619896c49dd2b528456e8eb76f5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-02-14  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/gstrfuncs.c: Improve docs.
+
 2006-02-11  Matthias Clasen  <mclasen@redhat.com>
 
        * configure.in: Bump version
index 86b9686672cafe962aa6f9a63c1b1ab83716f811..715f75626aa6b619896c49dd2b528456e8eb76f5 100644 (file)
@@ -1,3 +1,7 @@
+2006-02-14  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/gstrfuncs.c: Improve docs.
+
 2006-02-11  Matthias Clasen  <mclasen@redhat.com>
 
        * configure.in: Bump version
index 86b9686672cafe962aa6f9a63c1b1ab83716f811..715f75626aa6b619896c49dd2b528456e8eb76f5 100644 (file)
@@ -1,3 +1,7 @@
+2006-02-14  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/gstrfuncs.c: Improve docs.
+
 2006-02-11  Matthias Clasen  <mclasen@redhat.com>
 
        * configure.in: Bump version
index c0b93848ac1cfaf4448466106ba843e5388e5c7e..d7db600029b2f78631bf9285fa8f1fae5d7c4b3c 100644 (file)
@@ -1748,9 +1748,8 @@ g_ascii_xdigit_value (gchar c)
  * characters include all ASCII letters. If you compare two CP932
  * strings using this function, you will get false matches.
  *
- * Return value: an integer less than, equal to, or greater than
- *               zero if @s1 is found, respectively, to be less than,
- *               to match, or to be greater than @s2.
+ * Return value: 0 if the strings match, a negative value if @s1 &lt; @s2, 
+ *   or a positive value if @s1 &gt; @s2.
  **/
 gint
 g_ascii_strcasecmp (const gchar *s1,
@@ -1790,10 +1789,8 @@ g_ascii_strcasecmp (const gchar *s1,
  * function only on strings known to be in encodings where bytes
  * corresponding to ASCII letters always represent themselves.
  *
- * Return value: an integer less than, equal to, or greater than zero
- *               if the first @n bytes of @s1 is found, respectively,
- *               to be less than, to match, or to be greater than the
- *               first @n bytes of @s2.
+ * Return value: 0 if the strings match, a negative value if @s1 &lt; @s2, 
+ *   or a positive value if @s1 &gt; @s2.
  **/
 gint
 g_ascii_strncasecmp (const gchar *s1,