| 1234567891011121314151617181920 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* ft_islower.c :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@student.42.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* Created: 2017/11/13 15:40:23 by bchanot #+# #+# */
- /* Updated: 2017/11/13 15:42:13 by bchanot ### ########.fr */
- /* */
- /* ************************************************************************** */
- #include "libft.h"
- int ft_islower(int c)
- {
- if (c >= 97 && c <= 122)
- return (true);
- return (false);
- }
|