aboutsummaryrefslogtreecommitdiff
path: root/util.h
blob: 73440b13f3ab5e479aa42cda87939ff50e5f69a9 (plain) (blame)
1
2
3
4
5
6
7
#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_ */