android/GlueIOIOPort: fix spurious errors after IOIO baud rate change
[xcsoar.git] / src / Util / tstring.hpp
blob5f5f5fa3cba485b4a00c3e97b79c77d8cd05ce3e
1 #ifndef TSTRING_HPP
2 #define TSTRING_HPP
4 #include <string>
6 #ifdef _UNICODE
7 #include <tchar.h>
8 typedef std::wstring tstring;
9 #else
10 typedef std::string tstring;
11 #endif
13 tstring &
14 trim_inplace(tstring &s);
16 #endif