aboutsummaryrefslogtreecommitdiff
path: root/sys/fmtio/chrlwr.x
blob: a0050207fe32abff5b8f1719a19739076cc390b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.

include	<ctype.h>

# CHRLWR -- Convert char to lower case

char procedure chrlwr (ch)

char	ch

begin
	if (IS_UPPER (ch))
	    return (TO_LOWER (ch))
	else
	    return (ch)
end