breakhack/src/util.h

17 lines
279 B
C
Raw Normal View History

2017-11-30 21:00:47 +01:00
#ifndef UTIL_H_
#define UTIL_H_
void fatal(char *message);
void *ec_malloc(unsigned int size);
void _strcpy(char *restrict dest, size_t destsz, char *restrict src);
void
_strncat(char *restrict dest,
size_t destsz,
char *restrict src,
size_t srcsz);
2017-11-30 21:00:47 +01:00
#endif // UTIL_H_