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