summaryrefslogtreecommitdiff
path: root/case_lowers.c
blob: 208b3f598e41d7a8a1c65505a639033aedc5bf75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "case.h"

void case_lowers(s)
char *s;
{
  unsigned char x;
  while (x = *s) {
    x -= 'A';
    if (x <= 'Z' - 'A') *s = x + 'a';
    ++s;
  }
}