SuperNovaa41 47dc271bce Moves c files
Moves the c src files into a folder named 'api' to prepare for the front
end code
2024-01-22 13:37:23 -05:00

16 lines
225 B
C++

#ifndef CSV_H
#define CSV_H
#include <string>
#include <vector>
std::string strip_quotes(std::string input);
int get_next_comma(std::string input);
std::vector<std::string> get_csv_as_vector(std::string input);
#endif