home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / i18nv102.zip / SAMPLE / IS / READ.ME < prev   
Text File  |  1995-09-19  |  4KB  |  105 lines

  1.  
  2. ===============================================================================
  3.                   Internationalization (I18N) For OS/2                 
  4. ===============================================================================
  5.  
  6.                 Copyright IBM Corporation -- 1993, 1994, 1995
  7.  
  8. DISCLAIMER: This I18N package has been made available solely to gauge OS/2
  9. developer interest in the industry standard XPG4 internationalization 
  10. programming model. This does not mean that IBM will introduce a product based
  11. on the contents of this package. This package is not a full implementation of 
  12. the X/Open XPG4 specification and does not make any claims of XPG4 branding. 
  13. It implements only the portions of the XPG4 specification which deal with 
  14. internationalization.
  15.  
  16. X/Open is a trademark of the X/Open Company Limited.
  17.  
  18. ===============================================================================
  19.  
  20.  
  21. /************************/
  22. /***     Contents     ***/
  23. /************************/
  24.  
  25. 1.  Overview
  26. 2.  Files in this directory
  27. 3.  How to run the sample program
  28. 4.  How to compile the sample program
  29.  
  30.  
  31. 1.  Overview
  32. ============
  33.  
  34. The sample program in this directory uses the "is*" APIs.  These functions are
  35. used to determine if characters fall in to one of many different classes.  For
  36. example, is a specific character alphabetic?  or is it a punctuation mark?
  37.  
  38. The reason that these functions are provided as part of I18N is that the isw*
  39. tests vary based on locale.  What is considered alphanumeric in one part of
  40. the world is not in another part of the world.  Thus, these functions must
  41. be culturally sensitive.
  42.  
  43. Note that these functions are similar to the isw* functions in the "isw"
  44. directory, only these operate on characters, not wide characters.
  45.  
  46.  
  47. 2.  Files in this directory
  48. ===========================
  49.  
  50. File            Purpose
  51. ------------------------------------------------------------------------------
  52. is.c            Source code for the is sample program.
  53. is.def          Definition file needed for compiling the program.
  54. is.mak          Make file used to compile the sample.
  55. is.exe          Compiled version of the is sample.
  56.  
  57. build.cmd       A command file which will compile and link the sample program.
  58. read.me         This file.
  59.  
  60.  
  61. 3.  How to run the sample program
  62. =================================
  63.  
  64. The following steps show how the program can be run.
  65.  
  66.      1) Run the \i18n\bin\new_vars command file (or have the environment
  67.         variables already set).
  68.  
  69.      2) Set the value of either LC_ALL or LANG to: en_us (US English).
  70.  
  71.           Ex:   set LANG=en_us
  72.  
  73.      3) Execute the is.exe program.
  74.  
  75.           Ex:   is
  76.  
  77.      4) Experiment with changing the values of the LANG environment
  78.         variable.  Try the fr_fr locale to see the difference in the
  79.         results (for example, some accented characters are alphabetic
  80.         in fr_fr, whereas none of them are in en_us).  Try other locales
  81.         to see the difference.  Note: You may wish to change the codeset
  82.         of OS/2 to 850 before running this program with the french locale.
  83.         This can be done with the 'chcp' command:
  84.  
  85.           Ex: chcp 850
  86.  
  87.         When you are finished, change the codepage back to 437.
  88.  
  89.  
  90. 4.  How to compile the sample program
  91. =====================================
  92.  
  93. NOTE: The sample program is already compiled for you.  If you want to see the
  94.  behavior of the program, you can just run it.  The following instructions
  95.  are needed only if you want to modify the program and recompile it.
  96.  
  97. To compile the sample application:
  98.  
  99.      1) Make sure that the CSET/2 compiler and OS/2 toolkit are installed
  100.         correctly on your system.
  101.  
  102.      2) cd to the directory which contains the is source files.
  103.  
  104.      3) Type "build" at the command prompt.
  105.