imem.h revision cf4bdceafe382cda0f3b7ff39c5327fa96a00fba
#ifndef IMEM_H
#define IMEM_H
/* For easy allocation of memory from default memory pool. */
extern pool_t default_pool;
/* i_free() and i_free_and_null() are now guaranteed to both set mem=NULL,
so either one of them can be used. */
/* string functions */
/* like i_strdup(), but if str == "", return NULL */
/* *end isn't included */
char *i_strdup_printf(const char *format, ...)
#endif