1
0
mirror of synced 2026-02-02 23:20:52 +00:00
Files
brouhaha.tumble/pdf_util.h
2003-02-20 12:16:00 +00:00

12 lines
238 B
C

void pdf_fatal (char *fmt, ...);
void *pdf_calloc (long int size);
char *pdf_strdup (char *s);
#define pdf_assert(cond) do \
{ \
if (! (cond)) \
pdf_fatal ("assert at %s(%d)\n", __FILE__, __LINE__); \
} while (0)