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 566cbdc32..c55c3627a 100644 --- a/src/fstring.h +++ b/src/fstring.h @@ -79,6 +79,11 @@ gint fstrpush_unichar (f_str_t *dest, gunichar c); f_str_t* fstralloc (memory_pool_t *pool, size_t len); /* + * Allocate memory for f_str_t from temporary pool + */ +f_str_t* fstralloc_tmp (memory_pool_t *pool, size_t len); + +/* * Truncate string to its len */ f_str_t* fstrtruncate (memory_pool_t *pool, f_str_t *orig); |