aboutsummaryrefslogtreecommitdiff
path: root/src/SString.h
diff options
context:
space:
mode:
authorswhite <swhite@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2004-04-19 13:10:13 +0000
committerswhite <swhite@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2004-04-19 13:10:13 +0000
commitb6727f88dd115b1176003e695182dfecd5f7d4c0 (patch)
tree85507db841b578c6463c1067cb225ef00f93a11c /src/SString.h
parentf74e95157e422e2b3f583582f3cb0f5adbc6868d (diff)
Addresses Cactus bug 923
Made the download list to be organized by variable, then by data output type, then by slice. To facilitate list manipulation, added temporarily a list module 'PtrList', which perhaps may prove of more general use in the future. Pursuant to Cactus bug 907 Added parameter HTTPExtra::viewport_refresh_seconds to send Refresh header to web browser. Made ViewPort window to respond to viewport_refresh_seconds parameter General HTML improvements...checked with Amaya and lynx. Re-organized CSS info in HTTPD web pages. Got rid of httpuMimeType code which didn't do anything. git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPD/trunk@195 1faa4e14-9dd3-4be0-9f0e-ffe519881164
Diffstat (limited to 'src/SString.h')
-rw-r--r--src/SString.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/SString.h b/src/SString.h
index 81c6c85..1a7a5d4 100644
--- a/src/SString.h
+++ b/src/SString.h
@@ -2,7 +2,7 @@
@file SString.h
@date 02.04.2004
@author Steve White
- @desc Module for generic operations on strings
+ @desc C Module for generic operations on strings
@enddesc
@version $Header$
@@*/
@@ -11,16 +11,16 @@
#include <stddef.h>
-#ifdef __cplusplus
-extern "C"
-{
-#endif
typedef struct String_tag String; /* The abstract type for a String */
-typedef char SSCHAR; /* but could be Unicode */
+typedef char SSCHAR; /* Could be Unicode... */
typedef enum { SSFALSE, SSTRUE } SSBOOL;
+#ifdef __cplusplus
+extern "C"
+{
+#endif
/* String creation and deletion */
String *String_New( void );
String *String_Copy( const String *other );