#ifndef TOBI_MEM_H #define TOBI_MEM_H #include void *tobi_xmalloc(size_t n); void *tobi_xcalloc(size_t count, size_t size); void *tobi_xrealloc(void *ptr, size_t n); char *tobi_xstrdup(const char *s); char *tobi_xstrndup(const char *s, size_t n); #endif