1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-09-28 00:15:54 -04:00
uemacs/util.h

8 lines
159 B
C
Raw Normal View History

2019-06-19 07:49:20 -04:00
#ifndef UTIL_H_
#define UTIL_H_
#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
void mystrscpy(char *dst, const char *src, int size);
#endif /* UTIL_H_ */