/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_toupper.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: pbonilla +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/10/25 17:04:47 by pbonilla #+# #+# */ /* Updated: 2020/10/25 17:09:00 by pbonilla ### ########.fr */ /* */ /* ************************************************************************** */ int ft_toupper(int c) { if (c >= 'a' && c <= 'z') return (c - 32); return (c); }