Mercurial > libpst
diff testdebug.c @ 0:6b1b602514db libpst_0_5
Initial revision
author | carl |
---|---|
date | Fri, 09 Jul 2004 07:26:16 -0700 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/testdebug.c Fri Jul 09 07:26:16 2004 -0700 @@ -0,0 +1,23 @@ +#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; +} +