strcpy.c

The libc implementation

Author

Martin ‘Solar’ Baute

License

Public Domain

Summary
strcpy.cThe libc implementation
Functions
strcpyCopies the null terminated string s2 to s1

Functions

strcpy

char * strcpy(char * _PDCLIB_restrict s1,
const char * _PDCLIB_restrict s2)

Copies the null terminated string s2 to s1

Returns the value of s1

char * strcpy(char * _PDCLIB_restrict s1,
const char * _PDCLIB_restrict s2)
Copies the null terminated string s2 to s1