#include"string.h" char*strcpy(char*restrict dst,const char*restrict src) { char*ret=dst; do *dst++=*src; while(*src++); return ret; }