1 2 3 4 5 6
#include "memory.h" int strncmp(char const *string1, char const *string2, size_t size) { return memccmp(string1, string2, '\0', size); }