1
0
Fork 0
mirror of git://git.psyc.eu/libpsyc synced 2024-07-31 08:26:14 +00:00
libpsyc/include/psyc/lib.h
2011-04-22 17:09:32 +02:00

19 lines
403 B
C

/* this is needed to compile the library, not to use it */
#ifndef PSYC_LIB_H
# define PSYC_LIB_H
#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
#endif // PSYC_LIB_H