git-svn-id: http://apu.dw.local/svnusers/JoshHoltrop/pppc/trunk@51 8131a0b2-b21c-1c47-bd6a-f003126495bd
10 lines
112 B
C++
10 lines
112 B
C++
|
|
#ifndef TRIM_H
|
|
#define TRIM_H
|
|
|
|
#include <string>
|
|
|
|
std::string trim(const std::string & orig);
|
|
|
|
#endif
|