1 2 3 4 5 6
#include "memory.h" char *stpcpy(char *destination, char const *source) { return (char *)rawmemccpy(destination, source, '\0') - 1; }