(C) 1998 AROS - The Amiga Research OS


NAME
#include <string.h>

char * strcpy ()

SYNOPSIS
char * dest
const char * src

FUNCTION
Copy a string. Works like an assignment "dest=src;".

INPUTS
dest
The string is copied into this variable. Make sure it is large enough.
src
This is the new contents of dest.

RESULT
dest.

EXAMPLE

SEE ALSO
strncpy(), memcpy(), memmove()

NOTES
No check is beeing made that dest is large enough for src.

BUGS

INTERNALS

HISTORY
20.10.1998 hkiel
Amiga Research OS
11.12.1996 aros
Added/corrected headers
19.10.1996 aros
Moved all ANSI C function to here and wrote all neccessary header files. Now we have a real basis for our own C lib. Added the functions malloc(), free() and strcasecmp() Made all functions ANSI C compliant
02.10.1996 digulla
Use Prototypes
21.09.1996 digulla
Use Amiga types
01.08.1996 digulla
Added standard header for all files
29.07.1996 digulla
Intermediate files until we can use libc for linking