home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 9 / FreshFishVol9-CD2.bin / bbs / gnu / libnix-0.8-src.lha / libnix-0.8 / sources / nix / locale / __localevec.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-12  |  425 b   |  15 lines

  1. #include <libraries/locale.h>
  2.  
  3. /* This is the vector of Locales for the different locale types.
  4.  * Since the default locale is not NULL, NULL means "C" locale.
  5.  * This is the default if locale.library could not be opened
  6.  * or setlocale is never referenced.
  7.  */
  8.  
  9. struct Locale *__localevec[5]=
  10. { NULL,NULL,NULL,NULL,NULL };
  11.  
  12. /* If you need __localevec you need LocaleBase and vice versa.
  13.  */
  14. struct Library *LocaleBase=NULL;
  15.