/* 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 /* end of util.h */