Mercurial > libpst
view src/testdebug.c @ 202:2f38c4ce606f
remove readpstlog, switch to plain ascii debug log files
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Mon, 18 May 2009 15:55:05 -0700 |
parents | 6954d315aaa8 |
children |
line wrap: on
line source
#include "define.h" #define BUF_SIZE 100000 int main(int argc, const char** argv) { char *x = pst_malloc(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; }