home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / e / emxdev8f.zip / NLS.H < prev    next >
C/C++ Source or Header  |  1992-11-18  |  556b  |  27 lines

  1. /* sys/nls.h (emx+gcc) */
  2.  
  3. #if !defined (_SYS_NLS_H)
  4. #define _SYS_NLS_H
  5.  
  6. #if defined (__cplusplus)
  7. extern "C" {
  8. #endif
  9.  
  10. #if !defined (_NLSINIT_C)
  11. extern unsigned char _nls_toupper_tab[256];
  12. extern unsigned char _nls_tolower_tab[256];
  13. #endif
  14.  
  15. #define _nls_tolower(c) _nls_tolower_tab[c]
  16. #define _nls_toupper(c) _nls_toupper_tab[c]
  17.  
  18. void _nls_init (void);
  19. unsigned char *_nls_strlwr (unsigned char *string);
  20. unsigned char *_nls_strupr (unsigned char *string);
  21.  
  22. #if defined (__cplusplus)
  23. }
  24. #endif
  25.  
  26. #endif /* !defined (_SYS_NLS_H) */
  27.