2025-11-12 14:33:18 +00:00

19 lines
294 B
C++

#ifndef FILE_H
#define FILE_H
#include <stdio.h>
#include <vector>
#include <string>
#include <fstream>
#include <stdexcept>
#include <map>
#include "server_structs.h"
using namespace std;
vector<string> read_file(const char *filePath);
app_info parce_args(int argc, char *argv[]);
#endif