diff options
Diffstat (limited to 'src/FbTk/StringUtil.cc')
-rw-r--r-- | src/FbTk/StringUtil.cc | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/src/FbTk/StringUtil.cc b/src/FbTk/StringUtil.cc index 92d9eb3..92246e3 100644 --- a/src/FbTk/StringUtil.cc +++ b/src/FbTk/StringUtil.cc | |||
@@ -19,15 +19,31 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: StringUtil.cc,v 1.11 2004/05/02 20:42:56 fluxgen Exp $ | 22 | // $Id: StringUtil.cc,v 1.12 2004/08/31 15:26:39 rathnor Exp $ |
23 | 23 | ||
24 | #include "StringUtil.hh" | 24 | #include "StringUtil.hh" |
25 | 25 | ||
26 | #include <string> | 26 | #include <string> |
27 | #include <cstdio> | 27 | #ifdef HAVE_CSTDIO |
28 | #include <cstdlib> | 28 | #include <cstdio> |
29 | #include <cctype> | 29 | #else |
30 | #include <cassert> | 30 | #include <stdio.h> |
31 | #endif | ||
32 | #ifdef HAVE_CSTDLIB | ||
33 | #include <cstdlib> | ||
34 | #else | ||
35 | #include <stdlib.h> | ||
36 | #endif | ||
37 | #ifdef HAVE_CCTYPE | ||
38 | #include <cctype> | ||
39 | #else | ||
40 | #include <ctype.h> | ||
41 | #endif | ||
42 | #ifdef HAVE_CASSERT | ||
43 | #include <cassert> | ||
44 | #else | ||
45 | #include <assert.h> | ||
46 | #endif | ||
31 | #include <memory> | 47 | #include <memory> |
32 | #include <algorithm> | 48 | #include <algorithm> |
33 | 49 | ||