forked from Imagelibrary/rtems
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:
@@ -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
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user