mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 15:10:53 +00:00
1e3d5d70e9
svn path=/trunk/; revision=26033
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
|