char *memmove(char *dest, const char *src, long n) { int i; if (dest=0; i--) dest[i]=src[i]; return dest; }