You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
374 B
C
19 lines
374 B
C
#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
|