-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.h
23 lines (19 loc) · 1.08 KB
/
utils.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* utils.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: bde-sous <bde-sous@student.42porto.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/07/14 16:42:23 by ledos-sa #+# #+# */
/* Updated: 2023/10/09 19:47:49 by bde-sous ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef UTILS_H
# define UTILS_H
# include "minishell.h"
char *ft_realloc(char *str, int n);
char *readfromstdin(void);
int ft_get_id_pipe(t_token *tokens, int idx);
int ft_isint(const char *str);
#endif