carmel: init a basic software package builder
This commit is contained in:
parent
167b99c4e2
commit
537c0bd446
7 changed files with 369 additions and 0 deletions
14
programs/carmel/util.h
Normal file
14
programs/carmel/util.h
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue