10 lines
185 B
C
10 lines
185 B
C
|
#ifndef __pbd_strplit_h__
|
||
|
#define __pbd_strplit_h__
|
||
|
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
|
||
|
extern void split (std::string, std::vector<std::string>&, char);
|
||
|
|
||
|
#endif // __pbd_strplit_h__
|