#ifndef FIO_H
#define FIO_H
#include "llist.h"
#define F_DIRS 1
#define F_FILES 2
struct LList *dirToLList(const char *dir_name, int opts);
int fileExists(const char *filename);
int fileToMemory(char **buffer, const char *file_name);
#endif