#ifndef LIB_H #define LIB_H #include void * memset(void * destination, int32_t character, uint64_t length); void * memcpy(void * destination, const void * source, uint64_t length); void swap(char * x, char * y); char * reverse(char * buffer, int i, int j); int abs(int value); char * itoa(int value, char * buffer, int base, int length); #endif