home *** CD-ROM | disk | FTP | other *** search
- /* sys/nls.h (emx+gcc) */
-
- #if !defined (_SYS_NLS_H)
- #define _SYS_NLS_H
-
- #if defined (__cplusplus)
- extern "C" {
- #endif
-
- #if !defined (_NLSINIT_C)
- extern unsigned char _nls_toupper_tab[256];
- extern unsigned char _nls_tolower_tab[256];
- #endif
-
- #define _nls_tolower(c) _nls_tolower_tab[c]
- #define _nls_toupper(c) _nls_toupper_tab[c]
-
- void _nls_init (void);
- unsigned char *_nls_strlwr (unsigned char *string);
- unsigned char *_nls_strupr (unsigned char *string);
-
- #if defined (__cplusplus)
- }
- #endif
-
- #endif /* !defined (_SYS_NLS_H) */
-