comparison th_util.h @ 99:0313fabd8049

Added varargs versions of some functions.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 17 Nov 2009 23:08:15 +0200
parents 69aed051f84d
children 4ec36204d34e
comparison
equal deleted inserted replaced
98:b7c981e27b66 99:0313fabd8049
66 char *progAuthor, char *progLicense); 66 char *progAuthor, char *progLicense);
67 void THERR(const char *, ...); 67 void THERR(const char *, ...);
68 void THMSG(int, const char *, ...); 68 void THMSG(int, const char *, ...);
69 void THPRINT(int, const char *, ...); 69 void THPRINT(int, const char *, ...);
70 70
71 void THERR_V(const char *, va_list);
72 void THMSG_V(int, const char *, va_list);
73 void THPRINT_V(int, const char *, va_list);
74
71 void *th_malloc(size_t); 75 void *th_malloc(size_t);
72 void *th_calloc(size_t, size_t); 76 void *th_calloc(size_t, size_t);
73 void *th_realloc(void *, size_t); 77 void *th_realloc(void *, size_t);
74 void th_free(void *); 78 void th_free(void *);
75 79