home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / i18nv104.zip / SAMPLE / VERSION / VERSION.C < prev    next >
C/C++ Source or Header  |  1996-02-13  |  945b  |  23 lines

  1.  
  2.  
  3. /*****************************************************************************/
  4. /***     Include files                                                     ***/
  5. /*****************************************************************************/
  6.  
  7. #include <stdio.h>                      /* Standard IO functions.            */
  8.  
  9. #include <wchar.h>                      /* XPG/4 library.                    */
  10. #include <locale.h>                     /* Locale definitions.               */
  11.  
  12. /*****************************************************************************/
  13. /***     Main program                                                      ***/
  14. /*****************************************************************************/
  15.  
  16. void main(void)
  17. {
  18.   printf("************************************\n");
  19.   printf("Current I18N API Version Number %1.2f\n",get_i18n_version());
  20.   printf("************************************\n");
  21. }
  22.  
  23.