mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +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
|