You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
996 B
20 lines
996 B
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_isupper.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: narnaud <narnaud@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2022/03/24 10:06:18 by narnaud #+# #+# */
|
|
/* Updated: 2022/03/24 10:07:15 by narnaud ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "../libft.h"
|
|
|
|
int ft_isupper(char c)
|
|
{
|
|
if (c >= 'A' && c <= 'Z')
|
|
return (1);
|
|
return (0);
|
|
}
|
|
|