aboutsummaryrefslogtreecommitdiff
path: root/src/SString.h
diff options
context:
space:
mode:
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 );