8 lines
257 B
C
8 lines
257 B
C
#ifndef HEAP4_FREESTANDING_STRING_H
|
|
#define HEAP4_FREESTANDING_STRING_H
|
|
#include <stddef.h>
|
|
void *memcpy(void *destination, const void *source, size_t count);
|
|
void *memset(void *destination, int value, size_t count);
|
|
size_t strlen(const char *text);
|
|
#endif
|