#ifndef TOKEN_H
#define TOKEN_H

#include <vector>
#include <string>

void tokenize(const std::string& data, const std::string& separator, std::vector<std::string>& fields);

#endif
