]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
more string functions (patch by Cayle Graumann)
authorJürg Billeter <j@bitron.ch>
Mon, 19 Feb 2007 21:15:07 +0000 (21:15 +0000)
committerJürg Billeter <juergbi@src.gnome.org>
Mon, 19 Feb 2007 21:15:07 +0000 (21:15 +0000)
2007-02-19  Jürg Billeter  <j@bitron.ch>

* vapi/glib-2.0.vala: more string functions (patch by Cayle Graumann)

svn path=/trunk/; revision=190

vala/ChangeLog
vala/vapi/glib-2.0.vala

index 0bc6e50defb575e1102837fdea20eb11a97e49ed..0396e74dce156cacb4edf70ba4f637dd84f5ee56 100644 (file)
@@ -1,4 +1,8 @@
-2007-02-18  Raffaele Sandrini  <rasa@gmy.ch>
+2007-02-19  Jürg Billeter  <j@bitron.ch>
+
+       * vapi/glib-2.0.vala: more string functions (patch by Cayle Graumann)
+
+2007-02-18  Raffaele Sandrini  <rasa@gmx.ch>
 
        * vala/valainterfacewriter.vala: fix indentation for class definitions
 
index 92edd9be8a530d577703366b065af9c5209ae191..d67280737e5caca6e7965b62baefa89d0ca593e7 100644 (file)
@@ -214,10 +214,17 @@ public struct string {
        
        [CCode (cname = "g_utf8_strup")]
        public ref string up (long len = -1);
+       [CCode (cname = "g_utf8_strdown")]
+       public ref string down (long len = -1);
        [CCode (cname = "g_utf8_casefold")]
        public ref string casefold (long len = -1);
        [CCode (cname = "g_utf8_collate")]
        public int collate (string str2);
+
+       [CCode (cname="g_strchomp")]
+       public string chomp();
+       [CCode (cname="g_strchug")]
+       public string chug();
        
        [CCode (cname = "g_str_hash")]
        public uint hash ();