mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-10 14:36:13 -05:00
8 lines
159 B
C
8 lines
159 B
C
|
#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_ */
|