First commit

This commit is contained in:
2022-10-10 15:49:16 -05:00
commit 990d5dfbcc
10 changed files with 2314 additions and 0 deletions

18
fileman.h Normal file
View File

@@ -0,0 +1,18 @@
#ifndef FILEMAN_H_
#define FILEMAN_H_
#include <ncurses.h>
#include <sys/stat.h>
#include <string.h>
#include <dirent.h>
#include <stdlib.h>
#include <unistd.h>
#define FILE_ARR_SIZE 100
void addFiles(char*,char**,int,int);
int findFileCount(char*);
void removeDirFromPath(char*);
void addSlash(char *);
bool isFile(char *);
bool fileExists(char *);
#endif