comparison th_string.h @ 48:4e3616709752

Synced th-libs.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 29 Oct 2008 02:51:35 +0200
parents 707e35b03f89
children e36df57c5b0f
comparison
equal deleted inserted replaced
47:e47955d42b55 48:4e3616709752
41 41
42 /* Normal NUL-terminated string functions 42 /* Normal NUL-terminated string functions
43 */ 43 */
44 char *th_stralloc(size_t); 44 char *th_stralloc(size_t);
45 char *th_strrealloc(char *, size_t); 45 char *th_strrealloc(char *, size_t);
46 char *th_strdup(char *); 46 char *th_strncpy(char *, const char *, size_t);
47 char *th_strncpy(char *, char *, size_t);
48 int th_strcasecmp(char *, char *); 47 int th_strcasecmp(char *, char *);
49 int th_strncasecmp(char *, char *, size_t); 48 int th_strncasecmp(char *, char *, size_t);
50 void th_strip_ctrlchars(char *); 49 void th_strip_ctrlchars(char *);
51 50
52 int th_pstrcpy(char **, char *); 51 int th_pstrcpy(char **, char *);