view src/testdebug.c @ 118:0f1492b7fe8b

patch from Fridrich Strba for building on mingw and general cleanup of autoconf files add processing for pst files of type 0x0f start adding support for properly building and installing libpst.so and the header files required to use it. remove version.h since the version number is now in config.h more const correctness issues regarding getopt()
author Carl Byington <carl@five-ten-sg.com>
date Sat, 31 Jan 2009 12:12:36 -0800
parents f66078abed38
children ab2a11e72250
line wrap: on
line source

#include "define.h"

#include <stdlib.h>
#include <string.h>

#define BUF_SIZE 100000
int main(int argc, const char** argv) {
  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;
}