wix-on-linux/dupstr.h
2017-05-18 07:10:17 +01:00

8 lines
145 B
C

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