aboutsummaryrefslogtreecommitdiff
path: root/src/SString_Namespace.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/SString_Namespace.h')
-rw-r--r--src/SString_Namespace.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/SString_Namespace.h b/src/SString_Namespace.h
index 1ba9607..742d03f 100644
--- a/src/SString_Namespace.h
+++ b/src/SString_Namespace.h
@@ -25,6 +25,8 @@
StringInsertCString( a, b, c )
#define ConcatCString( a, b ) \
StringConcatCString( a, b )
+#define CompareCString( a, b ) \
+ StringCompareCString( a, b )
#define SetToBuffer( a, b, l ) \
StringSetToBuffer( a, b, l )
#define GetBuffer( a ) \
@@ -47,8 +49,8 @@
StringSetNextToken( s, c, p, r )
#define Compare( a, b ) \
StringCompare( a, b )
-#define AreEqual( a, b ) \
- StringsAreEqual( a, b )
+#define Equals( a, b ) \
+ StringEquals( a, b )
#define Insert( a, b, p ) \
StringInsert( a, b, p )
#define InsertChar( a, b, p ) \
@@ -67,6 +69,10 @@
StringConcatOctal( a, s )
#define ConcatDouble( a, s ) \
StringConcatDouble( a, s )
+#define ConcatFormattedDecimal( a, d, s1, s2, f ) \
+ StringConcatFormattedDecimal( a, d, s1, s2, f )
+#define ConcatFormattedUnsigned( a, d, s1, s2, f ) \
+ StringConcatFormattedUnsigned( a, d, s1, s2, f )
#define ConcatFormattedDouble( a, d, s1, s2, f ) \
StringConcatFormattedDouble( a, d, s1, s2, f )