// // Created by auric on 2/29/24. // #ifndef FETCH_H #define FETCH_H int fetch(int type, char** input); enum type { TYPE_PRELIM, TYPE_BINARY, TYPE_SOURCE, TYPE_GENERIC, }; extern int type; #endif //FETCH_H