Don't leave the silly debugging malloc enabled
[xiph/unicode.git] / ezstream / src / strfctns.h
blob83316fa1e0f66603e105f539c8a3287810928600
1 #ifndef __STRLFCTNS_H__
2 #define __STRLFCTNS_H__
4 #ifdef HAVE_CONFIG_H
5 # include "config.h"
6 #endif
8 #ifndef HAVE_STRLCAT
9 # define strlcat local_strlcat
10 #endif
11 size_t local_strlcat(char *, const char *, size_t);
13 #ifndef HAVE_STRLCPY
14 # define strlcpy local_strlcpy
15 #endif
16 size_t local_strlcpy(char *, const char *, size_t);
18 #ifndef HAVE_STRTONUM
19 # define strtonum local_strtonum
20 #endif
21 long long local_strtonum(const char *, long long, long long, const char **);
23 #endif /* __STRLFCTNS_H__ */