mirror of
https://github.com/3lswear/webserv.git
synced 2025-10-29 05:17:59 +03:00
14 lines
196 B
C++
14 lines
196 B
C++
#ifndef PARSE_HPP
|
|
#define PARSE_HPP
|
|
|
|
#include "tomlstuff.hpp"
|
|
|
|
#include "Tokenizer.hpp"
|
|
#include "TOMLNode.hpp"
|
|
#include "TOMLParser.hpp"
|
|
|
|
void parse(void);
|
|
void display(TOMLMap *config);
|
|
|
|
#endif
|