Mercurial > libpst
view src/testdebug.c @ 72:c21e9c001256
Added tag stable-0-6-9 for changeset 1bd4491cf8ff
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Fri, 16 May 2008 09:06:17 -0700 |
parents | f66078abed38 |
children | 0f1492b7fe8b |
line wrap: on
line source
#include "define.h" #include <stdlib.h> #include <string.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; }