REMOVED USER_STD macros, code formating, csv changes, few file functions

This commit is contained in:
2021-02-15 23:20:20 +01:00
parent 125c73ac33
commit c1532e78b1
15 changed files with 10550 additions and 2101 deletions

21
ml_io.h Normal file
View File

@@ -0,0 +1,21 @@
#pragma once
#include "../ml.h"
#include <string>
#include <vector>
#include <iostream>
#include <fstream>
std::string read_file_contents(const std::string &filename);
MlValue list_dir(const std::string &path);
bool is_path_file(const std::string &path);
bool is_path_dir(const std::string &path);
int mk_dir(const std::string &path);
int rm_dir(const std::string &path);