view src/common.h @ 269:b3a2f710fe2c noffle

[svn] * src/server.c: Fix post 1.0 bug where the article cursor was lost if the server yielded the lock to another server.
author bears
date Fri, 25 Oct 2002 12:04:57 +0100
parents 93d5d8b098da
children 21300895412f
line wrap: on
line source

/*
  common.h

  Common declarations.

  $Id: common.h 382 2002-06-05 22:03:44Z mirkol $
*/

#ifndef COMMON_H
#define COMMON_H

#if HAVE_CONFIG_H
#include <config.h>
#endif

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

#define FALSE 0
#define TRUE !0
#define MAXCHAR 2048
/* limited sscanf() format string: */
#define MAXCHAR_FMT "%2048s"

#ifdef DEBUG
#include <assert.h>
#define ASSERT( x ) \
    if ( ! ( x ) ) \
        Log_err( "ASSERTION FAILED: %s line %i", __FILE__, __LINE__ ); \
    assert( x )
#else
#define ASSERT( x )
#endif

typedef int Bool;
typedef char Str[ MAXCHAR ];

#endif