2003-10-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* src/dosfs/msdos_conv.c: Remove isupper, islower, toupper, tolower
	(Unused).
This commit is contained in:
Ralf Corsepius
2003-10-21 05:32:10 +00:00
parent 547c167351
commit 93fabe272a
2 changed files with 5 additions and 9 deletions

View File

@@ -1,3 +1,8 @@
2003-10-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* src/dosfs/msdos_conv.c: Remove isupper, islower, toupper, tolower
(Unused).
2003-09-26 Joel Sherrill <joel@OARcorp.com>
PR 492/filesystem

View File

@@ -163,15 +163,6 @@ msdos_date_dos2unix(unsigned int dd, unsigned int dt)
return seconds + lastseconds;
}
/*
* Cheezy macros to do case detection and conversion for the ascii
* character set. DOESN'T work for ebcdic.
*/
#define isupper(c) (c >= 'A' && c <= 'Z')
#define islower(c) (c >= 'a' && c <= 'z')
#define toupper(c) (c & ~' ')
#define tolower(c) (c | ' ')
static const u_char msdos_map[] = {
/* 00 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/* 08 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,