/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_toupper.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: tosuman +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/05/22 16:12:47 by tosuman #+# #+# */ /* Updated: 2023/05/22 16:12:47 by tosuman ### ########.fr */ /* */ /* ************************************************************************** */ int ft_toupper(int c) { if (c >= 'a' && c <= 'z') return (c - 32); return (c); }