garage/programs/carmel/util.h

14 lines
255 B
C

#ifndef _UTIL_H_
#define _UTIL_H_
#include <stddef.h>
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