#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. */
#ifndef STATIC_CHECKER
#else
STMT_START { \
} STMT_END
#endif
/* string functions */
/* like i_strdup(), but if str == "", return NULL */
/* *end isn't included */
char *i_strdup_printf(const char *format, ...)
#endif