mirror of
git://git.psyc.eu/libpsyc
synced 2024-08-15 03:19:02 +00:00
25 lines
597 B
C
25 lines
597 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"
|
|
#include <sys/cdefs.h>
|
|
#include <assert.h>
|
|
|
|
/* perlisms for readability */
|
|
#define unless(COND) if (!(COND))
|
|
#define until(COND) while (!(COND))
|
|
|
|
#define PSYC_NUM_ELEM(a) (sizeof(a) / sizeof(*(a)))
|
|
|
|
#if !defined(_GNU_SOURCE) && !defined(__FBSDID)
|
|
void * memmem(const void *l, size_t l_len, const void *s, size_t s_len);
|
|
#endif
|
|
|
|
#if !defined(_GNU_SOURCE) && !defined(__FBSDID)
|
|
int itoa(int number, char* out, int base);
|
|
#endif
|
|
|
|
#endif // PSYC_LIB_H
|