wix-on-linux/dupstr.h
Simon Tatham 48919caa7b Move dupcat out into its own file, and add dupstr.
Also a handy #define to replace all those tedious castings of NULL.
2017-05-18 07:10:17 +01:00

6 lines
124 B
C

#include <stddef.h>
#define cNULL ((const char *)NULL)
char *dupstr(const char *str);
char *dupcat(const char *str, ...);