acc/include/util/misc.h
2023-02-07 21:32:38 +08:00

10 lines
157 B
C

#ifndef ACC_UTIL_MISC_H
#define ACC_UTIL_MISC_H
#include <stdbool.h>
bool strequal(const char *s1, const char *s2);
char *strclone(const char *s);
#endif