WIDL: Enable the use of scalar types (non-pointer types) as custom binding handles.
[reactos.git] / irc / ArchBlackmann / trim.h
1 // trim.h
2 // This file is (C) 2004 Royce Mitchell III
3 // and released under the BSD & LGPL licenses
4
5 #ifndef TRIM_H
6 #define TRIM_H
7
8 #include <string>
9
10 std::string trim ( const std::string& s );
11
12 #endif//TRIM_H
13