Replace table-based ctype implementation with a code-based one; slower,
authorDavid Given <dg@cowlark.com>
Mon, 16 Mar 2015 21:27:43 +0000 (22:27 +0100)
committerDavid Given <dg@cowlark.com>
Mon, 16 Mar 2015 21:27:43 +0000 (22:27 +0100)
commitb66ab87124dd4f0a74079e792f02a2b6baa20ac1
treeb14adc27108f9f8ea3b928542f531163a3ac6989
parent82f15a65c21dd40ac21a96398898fa0340526546
Replace table-based ctype implementation with a code-based one; slower,
but smaller.

--HG--
extra : source : 7b3fa3e9be82eda290589e21dda60ad78e1fcda0
19 files changed:
Library/include/ctype.h
Library/libs/Makefile
Library/libs/Makefile.6502
Library/libs/ctype.c [deleted file]
Library/libs/isalnum.c [new file with mode: 0644]
Library/libs/isalpha.c [new file with mode: 0644]
Library/libs/isascii.c [new file with mode: 0644]
Library/libs/iscntrl.c [new file with mode: 0644]
Library/libs/isdigit.c [new file with mode: 0644]
Library/libs/isgraph.c [new file with mode: 0644]
Library/libs/islower.c [new file with mode: 0644]
Library/libs/isoctal.c [new file with mode: 0644]
Library/libs/ispunct.c [new file with mode: 0644]
Library/libs/isspace.c [new file with mode: 0644]
Library/libs/isupper.c [new file with mode: 0644]
Library/libs/isxdigit.c [new file with mode: 0644]
Library/libs/toascii.c [new file with mode: 0644]
Library/libs/tolower.c [new file with mode: 0644]
Library/libs/toupper.c [new file with mode: 0644]