diff options
Diffstat (limited to 'src/fstring.h')
-rw-r--r-- | src/fstring.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/fstring.h b/src/fstring.h index eb32dc285..566cbdc32 100644 --- a/src/fstring.h +++ b/src/fstring.h @@ -69,6 +69,11 @@ size_t fstrcat (f_str_t *dest, f_str_t *src); gint fstrpush (f_str_t *dest, gchar c); /* + * Push one character to fstr + */ +gint fstrpush_unichar (f_str_t *dest, gunichar c); + +/* * Allocate memory for f_str_t */ f_str_t* fstralloc (memory_pool_t *pool, size_t len); |