#ifndef LC6_HELPERS_H #define LC6_HELPERS_H // DO NOT include the common.h here. // because we're overriding functions // #include "../inc/lc6_common.h" void lc6helpers_printhex(unsigned char*, int); void lc6helpers_banner(unsigned char*); void* lc6helpers_malloc(size_t, char *, const char*, int); void* lc6helpers_realloc(void *ptr, size_t, char *, const char*, int); void lc6helpers_free(void *ptr, char *, const char*, int); #endif