ft_tolower.c 980 B

123456789101112131415161718192021
  1. /* ************************************************************************** */
  2. /* */
  3. /* ::: :::::::: */
  4. /* ft_tolower.c :+: :+: :+: */
  5. /* +:+ +:+ +:+ */
  6. /* By: phella <phella@student.21-school.ru> +#+ +:+ +#+ */
  7. /* +#+#+#+#+#+ +#+ */
  8. /* Created: 2021/10/16 13:56:20 by phella #+# #+# */
  9. /* Updated: 2021/10/16 14:37:34 by phella ### ########.fr */
  10. /* */
  11. /* ************************************************************************** */
  12. int ft_tolower(int ch)
  13. {
  14. if (ch >= 'A' && ch <= 'Z')
  15. {
  16. ch += 32;
  17. }
  18. return (ch);
  19. }