Initial commit

This commit is contained in:
CChen616
2024-03-19 15:48:17 +08:00
parent 2ae601ba66
commit 1023fb5796
82 changed files with 43002 additions and 1 deletions

18
include/mks_init.h Normal file
View File

@@ -0,0 +1,18 @@
#ifndef MKS_INIT_H
#define MKS_INIT_H
#include <stdio.h>
#include <stdlib.h>
#include <dirent.h>
#include <sys/types.h>
#include <errno.h>
#include <iostream>
#include <fstream>
bool get_by_id();
std::string generate_by_id();
bool FileStringReplace(std::ifstream &instream, std::ofstream &outstream);
std::string get_cfg_by_id();
#endif