lib.h revision 2ea177c8a53c71ac8587222c92d27c90c24a6b7a
#ifndef __LIB_H
#define __LIB_H
/* default lib includes */
#ifdef HAVE_CONFIG_H
# include "../../config.h"
#endif
/* default system includes - keep these at minimum.. */
#include <string.h> /* strcmp() etc. */
#include <stdarg.h> /* va_list is used everywhere */
#include <limits.h> /* INT_MAX, etc. */
#include <errno.h> /* error checking is good */
typedef struct _TempString TempString;
#include "compat.h"
#include "macros.h"
#include "failures.h"
#include "mempool.h"
#include "temp-mempool.h"
#include "imem.h"
#include "strfuncs.h"
unsigned int nearest_power(unsigned int num);
void lib_init(void);
void lib_deinit(void);
#endif