ft_islower.c 998 B

1234567891011121314151617181920
  1. /* ************************************************************************** */
  2. /* */
  3. /* ::: :::::::: */
  4. /* ft_islower.c :+: :+: :+: */
  5. /* +:+ +:+ +:+ */
  6. /* By: bchanot <bchanot@student.42.fr> +#+ +:+ +#+ */
  7. /* +#+#+#+#+#+ +#+ */
  8. /* Created: 2017/11/13 15:40:23 by bchanot #+# #+# */
  9. /* Updated: 2017/11/13 15:42:13 by bchanot ### ########.fr */
  10. /* */
  11. /* ************************************************************************** */
  12. #include "libft.h"
  13. int ft_islower(int c)
  14. {
  15. if (c >= 97 && c <= 122)
  16. return (true);
  17. return (false);
  18. }