AI-Tarpit-Reimagined/include/FileUtils.h
2025-04-29 19:30:31 +02:00

14 lines
220 B
C++

#ifndef FILEUTILS_H
#define FILEUTILS_H
#include <string>
#include <vector>
using namespace std;
struct FileUtils {
static bool fileExists(const char *path);
static char* getFiles(const char *path);
};
#endif