added to*() routines: a macro is impossible

This commit is contained in:
eck 1990-10-24 17:19:50 +00:00
parent a94e7b877a
commit e701e2e2ec
6 changed files with 15 additions and 5 deletions

View file

@ -1,4 +1,6 @@
LIST
Makefile
toupper.c
tolower.c
char.tab
genfiles

View file

@ -4,12 +4,12 @@ clean:
isxdigit.o isascii.o tolower.o toupper.o chartab.o \
isalnum.c isalpha.c iscntrl.c isdigit.c isgraph.c \
islower.c isprint.c ispunct.c isspace.c isupper.c \
isxdigit.c isascii.c tolower.c toupper.c chartab.c \
isxdigit.c isascii.c chartab.c \
OLIST
chartab.c: char.tab
tabgen -fchar.tab > chartab.c
isalnum.c isalpha.c iscntrl.c isdigit.c isgraph.c islower.c isprint.c \
ispunct.c isspace.c isupper.c isxdigit.c isascii.c tolower.c toupper.c: genfiles
ispunct.c isspace.c isupper.c isxdigit.c isascii.c: genfiles
sh genfiles

View file

@ -20,8 +20,6 @@ _U:G-Z
_L:g-z
%T#include <ctype.h>
%T
%Tint __x;
%T
%Tchar __ctype[] = {
%T0,
%p

View file

@ -1,6 +1,6 @@
for i in isalnum isalpha iscntrl isdigit isgraph islower isprint \
ispunct isspace isupper isxdigit isascii toupper tolower
ispunct isspace isupper isxdigit isascii
do
sed "s/xxxx/$i/" > $i.c << 'EOF'
#include <ctype.h>

View file

@ -0,0 +1,5 @@
#include <ctype.h>
int tolower(int c) {
return isupper(c) ? c - 'A' + 'a' : c ;
}

View file

@ -0,0 +1,5 @@
#include <ctype.h>
int toupper(int c) {
return islower(c) ? c - 'a' + 'A' : c ;
}