1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-07-26 06:30:22 +10:00
collapseos/tools/cfspack/cfs.h

11 lines
326 B
C
Raw Normal View History

#define BLKSIZE 0x100
#define HEADERSIZE 0x20
#define MAX_FN_LEN 25 // 26 - null char
#define MAX_FILE_SIZE (BLKSIZE * 0x100) - HEADERSIZE
void set_spit_stream(FILE *stream);
int is_regular_file(char *path);
void spitempty();
int spitblock(char *fullpath, char *fn);
int spitdir(char *path, char *prefix, char **patterns);