aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_tolower.c
blob: 52fbc94b344795abc25b14e2bd29fbb550544d88 (plain)
1
2
3
4
5
6
7
8
9
#include "libft.h"

int
ft_tolower (int c)
{
  if (c >= 'A' && c <= 'Z')
    return (c + ('a' - 'A'));
  return (c);
}