#ifndef _UTIL_H_ #define _UTIL_H_ #include typedef char byte; typedef byte bool; void copyFile(const char *, const char *); void changeDirectory(const char *); bool exists(const char *); size_t strbcpy(char *, const char *, size_t); #endif