| 1234567891011121314151617181920 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* ft_isupper.c :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@students.42.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* Created: 2016/08/09 23:42:37 by bchanot #+# #+# */
- /* Updated: 2017/11/13 16:11:22 by bchanot ### ########.fr */
- /* */
- /* ************************************************************************** */
- #include "libft.h"
- int ft_isupper(int c)
- {
- if (c >= 65 && c <= 90)
- return (true);
- return (false);
- }
|