]> jfr.im git - irc/quakenet/newserv.git/blobdiff - lib/sstring-valgrind.c
Implement --help parameter.
[irc/quakenet/newserv.git] / lib / sstring-valgrind.c
index e5fa38cbfec98e15808d6e62d85772596d457ac3..86d4e452ee4d018b686bdd5a844b3d652c405e37 100644 (file)
@@ -1,5 +1,3 @@
-/* sstring.h - Declaration of "static strings" functions */
-
 #define COMPILING_SSTRING
 #include "sstring.h"
 
 #define __USE_GNU
 #include <string.h>
 
+typedef struct sstringlist {
+  struct sstringlist *prev;
+  struct sstringlist *next;
+  sstring s[];
+} sstringlist;
+
+static sstringlist *head;
+
 void initsstring() {
 }