mirror of
https://github.com/reactos/reactos.git
synced 2025-01-10 00:00:20 +00:00
8 lines
151 B
C++
8 lines
151 B
C++
// tokenize.h
|
|
|
|
#ifndef TOKENIZE_H
|
|
#define TOKENIZE_H
|
|
|
|
void tokenize ( const std::string& text, std::vector<std::string>& tokens );
|
|
|
|
#endif//TOKENIZE_H
|