Corewar documentation 1.0.0
|
The file containing the my_strncpy function. More...
#include "my.h"
Functions | |
char * | my_strncpy (char *dest, char const *src, int n) |
Copies a string (src) and paste it on another string (dest) with a defined size (n) | |
The file containing the my_strncpy function.
char * my_strncpy | ( | char * | dest, |
char const * | src, | ||
int | n ) |
Copies a string (src) and paste it on another string (dest) with a defined size (n)
dest | The destination string |
src | The source string |
n | The size of the string |