ref: 44dfc2ed7f45a337358e8b113aa408a7cc2975a7
dir: /asif.h/
typedef struct String String; struct String{ char *s; int n; }; typedef struct VArray VArray; struct VArray{ int n; int elsize; int vsize; int bufsize; void *p; }; void vfree(VArray*); void vinsert(VArray*, char*); VArray* valloc(ulong, int); VArray* naivestrfind(String, String); VArray* morrispratt(String, String); VArray* knuthmorrispratt(String, String); typedef struct Pairheap Pairheap; struct Pairheap{ double n; void *aux; Pairheap *parent; Pairheap *left; Pairheap *right; }; void nukequeue(Pairheap**); Pairheap* popqueue(Pairheap**); void decreasekey(Pairheap*, double, Pairheap**); void pushqueue(double, void*, Pairheap**); void* erealloc(void*, ulong); void* emalloc(ulong); #define MIN(a,b) ((a) < (b) ? (a) : (b)) #define MAX(a,b) ((a) > (b) ? (a) : (b))