home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / Programming / ICU / src / icu / source / extra / ustdio / loccache.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-08-16  |  1.2 KB  |  35 lines

  1. /*
  2. *******************************************************************************
  3. *                                                                             *
  4. * COPYRIGHT:                                                                  *
  5. *   (C) Copyright International Business Machines Corporation, 1998           *
  6. *   Licensed Material - Program-Property of IBM - All Rights Reserved.        *
  7. *   US Government Users Restricted Rights - Use, duplication, or disclosure   *
  8. *   restricted by GSA ADP Schedule Contract with IBM Corp.                    *
  9. *                                                                             *
  10. *******************************************************************************
  11. *
  12. * File loccache.h
  13. *
  14. * Modification History:
  15. *
  16. *   Date        Name        Description
  17. *   11/18/98    stephen        Creation.
  18. *   03/11/99    stephen     Modified for new C API.
  19. *******************************************************************************
  20. */
  21.  
  22. #ifndef LOCCACHE_H
  23. #define LOCCACHE_H
  24.  
  25. #include "locbund.h"
  26. #include "uhash.h"
  27.  
  28. /* The global LocaleCacheInfo cache */
  29. extern UHashtable *gLocaleCache;
  30.  
  31. ULocaleBundle*
  32. u_loccache_get(const char *loc);
  33.  
  34. #endif
  35.