minishell
ft_to.h
Go to the documentation of this file.
1 /* ************************************************************************** */
2 /* */
3 /* ::: :::::::: */
4 /* ft_to.h :+: :+: :+: */
5 /* +:+ +:+ +:+ */
6 /* By: kfujita <kfujita@student.42tokyo.jp> +#+ +:+ +#+ */
7 /* +#+#+#+#+#+ +#+ */
8 /* Created: 2022/04/26 00:28:18 by kfujita #+# #+# */
9 /* Updated: 2022/04/26 00:28:54 by kfujita ### ########.fr */
10 /* */
11 /* ************************************************************************** */
12 
13 #ifndef FT_TO_H
14 # define FT_TO_H
15 
16 // Libft-01
17 int ft_toupper(int c);
18 int ft_tolower(int c);
19 
20 #endif
int ft_tolower(int c)
Definition: ft_tolower.c:16
int ft_toupper(int c)
Definition: ft_toupper.c:16