diff options
Diffstat (limited to 'eglib/gmain.c')
| -rw-r--r-- | eglib/gmain.c | 13 | 
1 files changed, 13 insertions, 0 deletions
diff --git a/eglib/gmain.c b/eglib/gmain.c index ed708fc2..f658b02a 100644 --- a/eglib/gmain.c +++ b/eglib/gmain.c @@ -1289,6 +1289,19 @@ gchar *g_strdup(const gchar *str)  	return s;  } +gchar* g_strdup_printf(const gchar *format, ...) +{ +	/* FIXME: Implement this */ +	return g_strdup(format); +} + +gchar* g_strdelimit(gchar *string, const gchar *delimiters, +						gchar new_delimiter) +{ +	/* FIXME: Implement this */ +	return string; +} +  /* GKeyFile */  struct _GKeyFile {  | 
