diff options
Diffstat (limited to 'include/util.h')
-rw-r--r-- | include/util.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/util.h b/include/util.h index fe834e1a2..962efa503 100644 --- a/include/util.h +++ b/include/util.h @@ -111,6 +111,7 @@ void free_strlist( STRLIST sl ); #define FREE_STRLIST(a) do { free_strlist((a)); (a) = NULL ; } while(0) void add_to_strlist( STRLIST *list, const char *string ); char *memistr( char *buf, size_t buflen, const char *sub ); +char *mem2str( char *, const void *, size_t); char *trim_spaces( char *string ); int string_count_chr( const char *string, int c ); |