21 lines
366 B
C
21 lines
366 B
C
#ifndef MAIN_H
|
|
#define MAIN_H
|
|
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <sys/types.h>
|
|
#include <dirent.h>
|
|
#include <time.h>
|
|
|
|
#define PATH_SIZE 2700
|
|
#define CACHE_SIZE 2700
|
|
|
|
FILE *_popen(const char *cmdstring, const char *type);
|
|
int _pclose(FILE * fp);
|
|
int8_t copy_new_mem(char *src, int src_len, char **dest);
|
|
|
|
#endif
|