wraith-lang/src/util.h

11 lines
173 B
C
Raw Normal View History

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