Newer
Older
ubixos-old / src / lib / libc_old / string / strcpy.c
@reddawg reddawg on 15 Apr 2004 140 bytes UbixOS v1.0
#include"string.h"
char*strcpy(char*restrict dst,const char*restrict src)
{
	char*ret=dst;

	do *dst++=*src; while(*src++);

	return ret;
}