aboutsummaryrefslogtreecommitdiff
path: root/src/SString.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/SString.h')
-rw-r--r--src/SString.h54
1 files changed, 0 insertions, 54 deletions
diff --git a/src/SString.h b/src/SString.h
index 1ff5445..96d1af6 100644
--- a/src/SString.h
+++ b/src/SString.h
@@ -68,58 +68,4 @@ String * StringConcatDouble( String *str, double d );
String * StringConcatFormattedDouble( String *str, int ndigits,
int ndecimals, double d );
-/* A poor man's namespace for the String module */
-#ifdef STRING_NAMESPACE
-
-#define Set( a, b ) \
- StringSet( a, b )
-#define SetToCString( a, b ) \
- StringSetToCString( a, b )
-#define InsertCString( a, b, c ) \
- StringInsertCString( a, b, c )
-#define ConcatCString( a, b ) \
- StringConcatCString( a, b )
-#define SetToBuffer( a, b ) \
- StringSetToBuffer( a, b )
-#define GetBuffer( a ) \
- StringGetBuffer( a )
-#define Length( p ) \
- StringLength( p )
-#define NthChar( s, n ) \
- StringNthChar( s, n )
-#define SetNthChar( s, n, c ) \
- StringSetNthChar( s, n, c )
-#define Truncate( s, n ) \
- StringTruncate( s, n )
-#define FindSubString( s, c, p ) \
- StringFindSubString( s, c, p )
-#define FindChar( s, c, p ) \
- StringFindChar( s, c, p )
-#define Compare( a, b ) \
- StringCompare( a, b )
-#define AreEqual( a, b ) \
- StringsAreEqual( a, b )
-#define Insert( a, b, p ) \
- StringInsert( a, b, p )
-#define InsertChar( a, b, p ) \
- StringInsertChar( a, b, p )
-#define Concat( a, b ) \
- StringConcat( a, b )
-#define Print( a ) \
- StringPrint( a )
-#define FormatPrint( a, s ) \
- StringFormatPrint( a, s )
-#define ConcatDecimal( a, s ) \
- StringConcatDecimal( a, s )
-#define ConcatHex( a, s ) \
- StringConcatHex( a, s )
-#define ConcatOctal( a, s ) \
- StringConcatOctal( a, s )
-#define ConcatDouble( a, s ) \
- StringConcatDouble( a, s )
-#define ConcatFormattedDouble( a, f, f2, s ) \
- StringConcatFormattedDouble( a, f, f2, s )
-
-#endif
-
#endif