19 lines
987 B
C
19 lines
987 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_toupper.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: grobledo <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/02/02 20:19:23 by grobledo #+# #+# */
|
|
/* Updated: 2023/02/02 20:19:25 by grobledo ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
#include "libft.h"
|
|
|
|
int ft_toupper(int c)
|
|
{
|
|
if (c >= 97 && c <= 122)
|
|
c -= 32;
|
|
return (c);
|
|
}
|