wraith-lang/src/util.h

9 lines
123 B
C
Raw Normal View History

2021-05-07 00:15:17 +00:00
#ifndef WRAITH_UTIL_H
#define WRAITH_UTIL_H
#include <string.h>
2021-05-16 07:42:37 +00:00
char *strdup(const char *s);
2021-05-07 00:15:17 +00:00
#endif /* WRAITH_UTIL_H */