1
0
Fork 0
mirror of git://git.psyc.eu/libpsyc synced 2024-08-15 03:19:02 +00:00
libpsyc/include/psyc/lib.h
psyc://psyced.org/~lynX a3fdc3d6b7 memmem, not rendering yet
2011-04-20 22:22:55 +02:00

15 lines
342 B
C

/* this is needed to compile the library, not to use it */
#include "../psyc.h"
#include "./debug.h"
/* perlisms for readability */
#define unless(COND) if (!(COND))
#define until(COND) while (!(COND))
#ifndef _GNU_SOURCE
void *memmem(const void *haystack, size_t haystacklen,
const void *needle, size_t needlelen);
#endif