]> git.mxchange.org Git - simgear.git/blob - Lib/Misc/strutils.hxx
Fixed an IRIX warning message where an inline function is referenced
[simgear.git] / Lib / Misc / strutils.hxx
1 // String utilities.
2 //
3 // Written by Bernie Bright, 1998
4 //
5 // Copyright (C) 1998  Bernie Bright - bbright@c031.aone.net.au
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22
23 #ifndef STRUTILS_H
24 #define STRUTILS_H
25
26 #include <Include/compiler.h>
27 #include STL_STRING
28
29 #ifdef FG_HAVE_STD_INCLUDES
30 #  include <cstdlib>
31 #else
32 #  include <stdlib.h>
33 #endif
34
35 FG_USING_STD(string);
36
37 // Default characters to remove.
38 extern const string whitespace;
39
40 // Returns a string with trailing characters removed.
41 string trimleft( const string& s, const string& trimmings = whitespace );
42
43 // Returns a string with leading characters removed.
44 string trimright( const string& s, const string& trimmings = whitespace );
45
46 // Returns a string with leading and trailing characters removed.
47 string trim( const string& s, const string& trimmings = whitespace );
48
49 //-----------------------------------------------------------------------------
50
51 inline double
52 atof( const string& str )
53 {
54     return ::atof( str.c_str() );
55 }
56
57 inline int
58 atoi( const string& str )
59 {
60     return ::atoi( str.c_str() );
61 }
62
63 #endif // STRUTILS_H
64