s/qmail  3.3.23
Next generation secure email transport
case_lowers.c
Go to the documentation of this file.
1 #include "case.h"
2 
3 void case_lowers(char *s)
4 {
5  unsigned char x;
6  while (x = *s) {
7  x -= 'A';
8  if (x <= 'Z' - 'A') *s = x + 'a';
9  ++s;
10  }
11 }
void case_lowers(char *s)
Definition: case_lowers.c:3
unsigned x
Definition: matchup.c:36