1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-06-12 22:40:42 +00:00
uemacs/util.h
Renaud Fivet 50b727bf7f Bindable functions take a boolean as flag.
Emphasize which one always return TRUE.
Use mloutfail() to introduce consistency when a function fails with error message.
2021-08-11 17:02:19 +08:00

10 lines
216 B
C

/* util.h -- utility functions */
#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_ */
/* end of util.h */