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