Thu, 20 Feb 2003 12:21:10 +0000
my own PDF routines to replace Panda.
1 void pdf_fatal (char *fmt, ...);
2
3 void *pdf_calloc (long int size);
4
5 char *pdf_strdup (char *s);
6
7 #define pdf_assert(cond) do \
8 { \
9 if (! (cond)) \
10 pdf_fatal ("assert at %s(%d)\n", __FILE__, __LINE__); \
11 } while (0)