home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / crt / src / initcoll.c < prev    next >
C/C++ Source or Header  |  1998-06-17  |  1KB  |  44 lines

  1. /***
  2. *initcoll.c - contains __init_collate
  3. *
  4. *       Copyright (c) 1991-1997, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. *       Contains the locale-category initialization function: __init_collate().
  8. *
  9. *       Each initialization function sets up locale-specific information
  10. *       for their category, for use by functions which are affected by
  11. *       their locale category.
  12. *
  13. *       *** For internal use by setlocale() only ***
  14. *
  15. *******************************************************************************/
  16.  
  17. #include <windows.h>
  18. #include <locale.h>
  19. #include <setlocal.h>
  20.  
  21. /***
  22. *int __init_collate() - initialization for LC_COLLATE locale category.
  23. *
  24. *Purpose:
  25. *       The LC_COLLATE category currently requires no initialization.
  26. *
  27. *Entry:
  28. *       None.
  29. *
  30. *Exit:
  31. *       0 success
  32. *       1 fail
  33. *
  34. *Exceptions:
  35. *
  36. *******************************************************************************/
  37.  
  38. int __cdecl __init_collate (
  39.         void
  40.         )
  41. {
  42.         return 0;
  43. }
  44.