s/qmail
3.3.23
Next generation secure email transport
sqmail-3.3.23
src
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
}
case_lowers
void case_lowers(char *s)
Definition:
case_lowers.c:3
x
unsigned x
Definition:
matchup.c:36
case.h
Generated on Sat Jan 12 2019 23:42:27 for s/qmail by
1.8.13