my_teams
asprintf.h
Go to the documentation of this file.
1 /*
2 ** EPITECH PROJECT, 2024
3 ** my_teams [WSL: Arch]
4 ** File description:
5 ** asprintf
6 */
7 
8 #ifndef ASPRINTF_H_
9  #define ASPRINTF_H_
10 
11  #ifndef asprintf
12  #ifndef _GNU_SOURCE
13  #define _GNU_SOURCE
14  #endif
15  #include <stdio.h>
16 
17 int asprintf(char **strp, const char *fmt, ...);
18  #endif
19 
20 #endif /* !ASPRINTF_H_ */
int asprintf(char **strp, const char *fmt,...)