Mercurial > libpst
annotate src/testdebug.c @ 177:59bd93d02feb stable-0-6-35
add archive files
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Wed, 08 Apr 2009 15:10:05 -0700 |
parents | 6954d315aaa8 |
children |
rev | line source |
---|---|
48 | 1 #include "define.h" |
2 | |
123
ab2a11e72250
more cleanup of #include files.
Carl Byington <carl@five-ten-sg.com>
parents:
118
diff
changeset
|
3 #define BUF_SIZE 100000 |
16 | 4 |
118
0f1492b7fe8b
patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents:
48
diff
changeset
|
5 int main(int argc, const char** argv) { |
172
6954d315aaa8
move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents:
129
diff
changeset
|
6 char *x = pst_malloc(BUF_SIZE); // 10k |
16 | 7 memset(x, '.', BUF_SIZE-1); |
8 x[BUF_SIZE-2]='P'; | |
9 x[BUF_SIZE-1]='\0'; | |
10 | |
11 DEBUG_INIT("libpst.log"); | |
12 DEBUG_REGISTER_CLOSE(); | |
13 | |
14 DEBUG_ENT("main"); | |
15 | |
16 DEBUG_FILE(("%s", x)); | |
17 DEBUG_FILE(("This is an error %d\n", 4)); | |
18 | |
19 DEBUG_RET(); | |
20 return 0; | |
21 } | |
22 |