carmel: init a basic software package builder

This commit is contained in:
Jeremy Baxter 2025-04-30 10:27:03 +12:00
parent 167b99c4e2
commit 537c0bd446
7 changed files with 369 additions and 0 deletions

14
programs/carmel/util.h Normal file
View file

@ -0,0 +1,14 @@
#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