-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnames_generator.c
18 lines (16 loc) · 1013 Bytes
/
names_generator.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* names_generator.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aouchaad <aouchaad@student.1337.ma> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/06/13 11:33:51 by aouchaad #+# #+# */
/* Updated: 2023/06/22 15:01:50 by aouchaad ### ########.fr */
/* */
/* ************************************************************************** */
#include "minishell.h"
char *names_generator(int i)
{
return (ft_sssstrjoin(ft_strdup("/tmp/heredoc"), ft_itoa(i)));
}