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

int
ft_toupper (int c)
{
  if (c >= 'a' && c <= 'z')
    return (c - ('a' - 'A'));
  return (c);
}