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

11 lines
203 B
C
Raw Normal View History

/* util.h -- utility functions */
#ifndef _UTIL_H_
#define _UTIL_H_
2019-06-19 07:49:20 -04:00
#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
void mystrscpy( char *dst, const char *src, int size) ;
2019-06-19 07:49:20 -04:00
#endif
/* end of util.h */