summaryrefslogtreecommitdiff
path: root/userland/libc/ctype/toupper.c
blob: 0f338869403f5466378584c116f8e89db43ee4a2 (plain)
1
2
3
4
5
6
7
#include <ctype.h>

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