Libft
 
Loading...
Searching...
No Matches
ft_strjoins_va.c File Reference
#include "libft.h"
#include <stdarg.h>
#include <stdlib.h>
Include dependency graph for ft_strjoins_va.c:

Functions

char * ft_strjoins_va (char const *str,...)
 Allocates a new string, and returns the result of a concatenation of str and all the arguments last argument needs to be "\0", NULL or "".
 

Function Documentation

◆ ft_strjoins_va()

char * ft_strjoins_va ( char const * str,
... )

Allocates a new string, and returns the result of a concatenation of str and all the arguments last argument needs to be "\0", NULL or "".

Parameters
strstring 1
...Variadic arguments
Returns
char* new string
Here is the call graph for this function: