Mercurial > libpst
view src/testdebug.c @ 28:51d826f31329
more cleanup from Arne, document 7c block format
author | carl |
---|---|
date | Sat, 25 Feb 2006 16:03:45 -0800 |
parents | c508ee15dfca |
children | f66078abed38 |
line wrap: on
line source
#include <stdlib.h> #include <string.h> #include "define.h" #define BUF_SIZE 100000 int main() { char *x = xmalloc(BUF_SIZE); // 10k memset(x, '.', BUF_SIZE-1); x[BUF_SIZE-2]='P'; x[BUF_SIZE-1]='\0'; DEBUG_INIT("libpst.log"); DEBUG_REGISTER_CLOSE(); DEBUG_ENT("main"); DEBUG_FILE(("%s", x)); DEBUG_FILE(("This is an error %d\n", 4)); DEBUG_RET(); return 0; }