2021-01-04 15:00:48 -05:00
|
|
|
#ifndef IO_H
|
|
|
|
#define IO_H
|
|
|
|
|
|
|
|
typedef struct flist {
|
|
|
|
char* name;
|
|
|
|
char* fullname;
|
|
|
|
char* outname;
|
|
|
|
struct flist* next;
|
|
|
|
} FILELIST;
|
|
|
|
|
|
|
|
|
|
|
|
FILELIST* getfiles(char* input);
|
|
|
|
void freefilelist(FILELIST* fs);
|
2021-01-05 11:00:23 -05:00
|
|
|
char* getouthack(char* input);
|
2021-01-04 15:00:48 -05:00
|
|
|
#endif
|