acc/include/util/misc.h
szdytom 38fd3c8911 add quad repersentation
Signed-off-by: szdytom <szdytom@163.com>
2023-06-13 19:44:07 +08:00

12 lines
213 B
C

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