#include "mm.h"Go to the source code of this file.
Defines | |
| #define | debugp(m,...) |
Functions | |
Utility functions | |
| void * | xmalloc (size_t) |
| void * | xrealloc (void *, size_t) |
| void | xfree (void *) |
| char * | xstrdup (const char *) |
| char * | xstrsep (char **, const char *) |
| #define debugp | ( | m, | |||
| ... | ) |
Value:
do { \ fprintf(stderr, "%s:%d:: ", __FILE__, __LINE__); \ fprintf(stderr, m, ## __VA_ARGS__); \ fprintf(stderr, "\n"); \ fflush(stderr); \ } while (0);
1.5.1