42sh 1.0.0
Create a shell in C
Loading...
Searching...
No Matches
my_strcat.c File Reference

The file containing the my_strcat function. More...

#include "my.h"

Functions

char * my_strcat (char *dest, char const *src)
 Concatenates two strings (dest) and (src)
 

Detailed Description

The file containing the my_strcat function.

Author
Nicolas TORO

Function Documentation

◆ my_strcat()

char * my_strcat ( char * dest,
char const * src )

Concatenates two strings (dest) and (src)

Note
The destination string must be allocated and have enough space
Parameters
destThe destination string
srcThe source string
Returns
char* The destination string
Author
Nicolas TORO