42sh 1.0.0
Create a shell in C
|
The file containing the my_strcpy function. More...
#include "my.h"
Functions | |
char * | my_strcpy (char *dest, char const *src) |
Copies a string (src) and paste it on another string (dest) | |
The file containing the my_strcpy function.
char * my_strcpy | ( | char * | dest, |
char const * | src ) |
Copies a string (src) and paste it on another string (dest)
dest | The destination string |
src | The source string |
n | The size of the string |