/****************************************************************************** * $Id: freepops.h,v 1.3 2005/06/03 16:29:21 alessiofender Exp $ * This file is part of FreePOPs (http://www.freepops.org) * * This file is distributed under the terms of GNU GPL license. * ******************************************************************************/ /******************************************************************************/ /*! * \file freepops.h * \brief This file contains some general defines * \author Enrico Tassi */ /******************************************************************************/ #ifndef FREEPOPS_H #include #ifdef HAVE_CONFIG_H #include "config.h" #endif //! global var for -v option extern int verbose_output; //! global var for -c option extern char *configfile; //! min of two #ifndef MIN #define MIN(a,b) (((a)<(b))?(a):(b)) #endif //! max of two #ifndef MAX #define MAX(a,b) ((a