move some string functions in lib-lib !
[apps/madmutt.git] / lib-lib / lib-lib.h
index c19a9ac..1b0769a 100644 (file)
 
 /* }}} */
 
+typedef union __attribute__((transparent_union)) anytype {
+    void  *ptr;
+    long  li;
+    int   i;
+    short si;
+} anytype;
+
 #include "mem.h"
 #include "str.h"
 
 #include "rx.h"
 #include "url.h"
 
-typedef union __attribute__((transparent_union)) anytype {
-    void  *ptr;
-    long  li;
-    int   i;
-    short si;
-} anytype;
-
 #endif