imem.h revision cf37950c9d817a66e0f6a9064b3194c677f23b0b
#ifndef __IMEM_H
#define __IMEM_H
/* For easy allocation of memory from default memory pool. */
extern pool_t default_pool;
/* string functions */
/* like i_strdup(), but if str == "", return NULL */
/* *end isn't included */
char *i_strdup_printf(const char *format, ...)
void imem_init(void);
#endif