]> jfr.im git - irc/quakenet/newserv.git/blobdiff - lib/sstring.h
CHANSERV: remove accidental sendemail from SETEMAIL command.
[irc/quakenet/newserv.git] / lib / sstring.h
index 22f23c6c52ccd4c7c175946b252f2ce592655720..d514242aba0b2d9914fbfb63d04dff02c6377224 100644 (file)
@@ -1,47 +1,18 @@
 /* sstring.h - Declaration of "static strings" functions */
 
-#ifndef __SSTRING_H 
+#ifndef __SSTRING_H
 #define __SSTRING_H
 
-/* Externally visibly max string length */
-#define SSTRING_MAX    512
-
-#ifdef COMPILING_SSTRING
-/* Internal version of structure */
-typedef struct {
-  char *content;
-  union {
-    struct {
-      short length;
-      short alloc;
-    } l;
-    void *next;
-  } u;
-} sstring;
-
-/* Internal defines */
-
-/* SSTRING_MAXLEN is the internal version of SSTRING_MAX which includes
- * space for the trailing NUL */
-#define SSTRING_MAXLEN      (SSTRING_MAX + 1)
-#define SSTRING_SLACK       8
-#define SSTRING_STRUCTALLOC 4096
-#define SSTRING_DATAALLOC   4096
-
-#else
-/* External (simpler) version */
-
-typedef struct {
-  char *content;
+typedef struct sstring {
   short length;
+  char content[];
 } sstring;
 
-#endif /* COMPILING_SSTRING */
+/* Externally visibly max string length */
+#define SSTRING_MAX    512
 
 sstring *getsstring(const char *, int);
 void freesstring(sstring *);
 int sstringcompare(sstring *ss1, sstring *ss2);
-void initsstring();
-void finisstring();
 
 #endif /* __SSTRING_H */