123456789101112131415161718192021 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* ft_tolower.c :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: phella <phella@student.21-school.ru> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* Created: 2021/10/16 13:56:20 by phella #+# #+# */
- /* Updated: 2021/10/16 14:37:34 by phella ### ########.fr */
- /* */
- /* ************************************************************************** */
- int ft_tolower(int ch)
- {
- if (ch >= 'A' && ch <= 'Z')
- {
- ch += 32;
- }
- return (ch);
- }
|