diff options
author | Luiz Augusto von Dentz <luiz.dentz@openbossa.org> | 2008-03-11 19:17:44 +0000 |
---|---|---|
committer | Luiz Augusto von Dentz <luiz.dentz@openbossa.org> | 2008-03-11 19:17:44 +0000 |
commit | fdb96aa156e3f944806d484b51fe2eab63952839 (patch) | |
tree | e0bb9c0ad8ff954b1f34e53af5bd0f1ab4fa9bc5 | |
parent | e7e3d513c99d23f06edf387d0e8ed97150d574e2 (diff) |
Make new eglib functions available in gmain.h
-rw-r--r-- | eglib/gmain.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/eglib/gmain.h b/eglib/gmain.h index b174ef0d..b3590338 100644 --- a/eglib/gmain.h +++ b/eglib/gmain.h @@ -226,6 +226,9 @@ void g_free(gpointer mem); gchar *g_strdup(const gchar *str); gchar* g_strdup_printf(const gchar *format, ...); gchar* g_strdelimit(gchar *string, const gchar *delimiters, gchar new_delim); +gchar *g_strconcat(const gchar *string1, ...); +gchar **g_strsplit(const gchar *string, const gchar *delimiter, gint max_tokens); +gboolean g_str_equal(gconstpointer v1, gconstpointer v2); #define g_new(struct_type, n_structs) \ ((struct_type *) g_malloc (((gsize) sizeof (struct_type)) * ((gsize) (n_structs)))) |