| 1234567891011121314151617181920 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* ft_tolower.c :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@students.42.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* Created: 2015/11/25 13:04:09 by bchanot #+# #+# */
- /* Updated: 2016/08/09 23:43:22 by bchanot ### ########.fr */
- /* */
- /* ************************************************************************** */
- #include "libft.h"
- int ft_tolower(int c)
- {
- if (c >= 65 && c <= 90)
- c += 32;
- return (c);
- }
|