14 lines
359 B
C
14 lines
359 B
C
#ifndef LIB_H
|
|
#define LIB_H
|
|
|
|
#include <stdint.h>
|
|
|
|
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 |