From 6af21e6a4f2251e71353562d5df7f376fdffc270 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Tue, 25 Mar 2025 17:36:52 -0400 Subject: initial checkout from wrc --- lib/strcpy.c | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 lib/strcpy.c (limited to 'lib/strcpy.c') diff --git a/lib/strcpy.c b/lib/strcpy.c new file mode 100644 index 0000000..036e4be --- /dev/null +++ b/lib/strcpy.c @@ -0,0 +1,35 @@ +/** +** @file strcpy.c +** +** @author Numerous CSCI-452 classes +** +** @brief C implementations of common library functions +*/ + +#ifndef STRCPY_SRC_INC +#define STRCPY_SRC_INC + +#include + +#include + +/** +** strcpy(dst,src) - copy a NUL-terminated string +** +** @param dst The destination buffer +** @param src The source buffer +** +** @return The dst parameter +** +** NOTE: assumes dst is large enough to hold the copied string +*/ +char *strcpy( register char *dst, register const char *src ) { + register char *tmp = dst; + + while( (*dst++ = *src++) ) + ; + + return( tmp ); +} + +#endif -- cgit v1.2.3-freya