home *** CD-ROM | disk | FTP | other *** search
- /* Copyright (C) 1996 DJ Delorie, see COPYING.DJ for details */
- #include <libc/stubs.h>
- #include <stdlib.h>
- #include <ctype.h>
- #include <fcntl.h>
- #include <crt0.h>
-
- char
- _preserve_fncase (void)
- {
- char *ep;
-
- return ((_crt0_startup_flags & _CRT0_FLAG_PRESERVE_FILENAME_CASE)
- || ((ep = getenv ("FNCASE")) && tolower (*ep) == 'y'));
- }
-