1 2 3 4 5 6 7 8
#ifndef STRING_H #define STRING_H void* memcpy(void* restrict dstptr, const void* restrict srcptr, int size); int strcmp_l(char *str1, char *str2, int length); #endif