| 1234567891011121314151617181920 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* ft_toupper.c :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@students.42.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* Created: 2015/11/25 13:00:42 by bchanot #+# #+# */
- /* Updated: 2018/03/15 14:55:32 by xuser ### ########.fr */
- /* */
- /* ************************************************************************** */
- #include "libft.h"
- int ft_toupper(int c)
- {
- if (c >= 97 && c <= 122)
- return (c - 32);
- return (c);
- }
|