aboutsummaryrefslogtreecommitdiff
path: root/src/SString_Namespace.h
diff options
context:
space:
mode:
authorswhite <swhite@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2004-04-16 11:42:08 +0000
committerswhite <swhite@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2004-04-16 11:42:08 +0000
commit2985e4a0702f0e2b67a18be4d214ac8d2ad9be8a (patch)
tree72249479e780120aad98475dbd0f69ef48f86368 /src/SString_Namespace.h
parent310f5363afe8ed31b6381ff002991d5c7cfa6d96 (diff)
Addresses Cactus bug 907
Added ability to send HTTP Refresh header: HTTP_Send_OK_Refresh_Header Added parameter HTTP::refresh_seconds Made main content window to respond to refresh parameter setting Also Minor improvements to String module Fixed variable decarations after executable code in a block. git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPD/trunk@193 1faa4e14-9dd3-4be0-9f0e-ffe519881164
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 )