comparison th_string.h @ 126:9ae3d87a686f

Sync.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 29 Oct 2010 19:54:42 +0300
parents fe4d5f3b486c
children 3896861974ac
comparison
equal deleted inserted replaced
125:d03ebefb92a6 126:9ae3d87a686f
45 char *th_strncpy(char *, const char *, size_t); 45 char *th_strncpy(char *, const char *, size_t);
46 int th_strcasecmp(const char *, const char *); 46 int th_strcasecmp(const char *, const char *);
47 int th_strncasecmp(const char *, const char *, size_t); 47 int th_strncasecmp(const char *, const char *, size_t);
48 void th_strip_ctrlchars(char *); 48 void th_strip_ctrlchars(char *);
49 49
50 #ifdef STRDUP_PRINTF
51 char *th_strdup_vprintf(const char *, va_list); 50 char *th_strdup_vprintf(const char *, va_list);
52 char *th_strdup_printf(const char *, ...); 51 char *th_strdup_printf(const char *, ...);
53 #endif
54 52
55 char *th_strdup(const char *); 53 char *th_strdup(const char *);
56 int th_pstrcpy(char **, const char *); 54 int th_pstrcpy(char **, const char *);
57 int th_pstrcat(char **, const char *); 55 int th_pstrcat(char **, const char *);
58 56