ulib  1.0
S.W. Lee's essential C++ library
 All Classes Namespaces Files Functions Variables Typedefs Macros Pages
ufunc.h
Go to the documentation of this file.
1 #ifndef ___ufunc___
2 #define ___ufunc___
3 #include <stdio.h>
4 #include <string.h>
5 #include "ustring.h"
6 #include "utextfile.h"
7 
8 namespace ulib {
9 
10 bool LoadTextFile( char filename[], CUString &file_content );
11 bool GetElementByBoundTag( CUString &str, CUString &ret, char start[], char end[] );
12 
13 CUString Bool2Str( bool expr );
14 bool Str2Bool( CUString str );
15 int Str2Int ( CUString str );
16 double Str2Real( CUString str );
17 
18 }
19 
20 #endif
21 
22 // EOF ㅁ
23