4.4BSD/usr/share/man/cat1/mklocale.0

Compare this file to the similar file:
Show the results in this format:

MKLOCALE(1)                  BSD Reference Manual                  MKLOCALE(1)

NNAAMMEE
     mmkkllooccaallee - make LC_CTYPE locale files

SSYYNNOOPPSSIISS
     mmkkllooccaallee _< _s_r_c_-_f_i_l_e _> _l_a_n_g_u_a_g_e_/_L_C___C_T_Y_P_E

DDEESSCCRRIIPPTTIIOONN
     The mmkkllooccaallee utility reads a LC_CTYPE source file from standard input and
     produces a LC_CTYPE binary file on standard output suitable for placement
     in /usr/share/locale/_l_a_n_g_u_a_g_e/LC_CTYPE.

     The format of _s_r_c_-_f_i_l_e is quite simple.  It consists of a series of lines
     which start with a keyword and have associated data following.  C style
     comments are used to place comments in the file.

     Besides the keywords which will be listed below, the following are valid
     tokens in _s_r_c_-_f_i_l_e:

     RUNE     A RUNE may be any of the following:

              _'_x_'          The ascii character _x.

              _'_\_x_'         The ANSI C character _\_x where _\_x is one of \a, \b,
                           \f, \n, \r, \t, or \v.

              _0_x_[_0_-_9_a_-_z_]_*  A hexadecimal number representing a rune code.

              _0_[_0_-_7_]_*      An octal number representing a rune code.

              _[_1_-_9_]_[_0_-_9_]_*  A decimal number representing a rune code.

     STRING   A string enclosed in double quotes (").

     THRU     Either ... or -. Used to indicate ranges.

     _l_i_t_e_r_a_l  The follow characters are taken literally:

              <([  Used to start a mapping.  All are equivalent.

              >)]  Used to end a mapping.  All are equivalent.

              :    Used as a delimiter in mappings.

     Key words which should only appear once are:

     ENCODING   Followed by a STRING which indicates the encoding mechanism to
                be used for this locale.  The current encodings are:

                NONE  No translation and the default.

                UTF2  Universal character set Transformation Format adopted
                      from PPllaann 99 ffrroomm BBeellll LLaabbss. This is the preferred encod-
                      ing.

                EUC   EUC encoding as used by several vendors of UNIX systems.

     VARIABLE   This keyword must be followed by a single tab or space charac-
                ter, after which encoding specific data is placed.  Currently
                only the EUC encoding requires variable data.  See euc(4) for
                further details.

     INVALID    A single RUNE follows and is used as the invalid rune for this
                locale.

     The following keywords may appear multiple times and have the following
     format for data:

          <RUNE1 RUNE2>               RUNE1 is mapped to RUNE2.

          <RUNE1 THRU RUNEn: RUNE2>   Runes RUNE1 through RUNEn are mapped to
                                      RUNE2 through RUNE2 + n-1.

     MAPLOWER   Defines the tolower mappings.  RUNE2 is the lower case repre-
                sentatin of RUNE1.

     MAPUPPER   Defines the toupper mappings.  RUNE2 is the upper case repre-
                sentatin of RUNE1.

     TODIGIT    Defines a map from runes to their digit value.  RUNE2 is the
                integer value represented  by RUNE1. For example, the ascii
                character ''00'' would map to the decimal value 00. Only values up
                to 225555 are allowed.

     The following keywords may appear multiple times and have the following
     format for data:

          RUNE              This rune has the property defined by the keyword.

          RUNE1 THRU RUNEn  All the runes between and including RUNE1 and
                            RUNEn have the property defined by the keyword.

     ALPHA      Defines runes which are alphabetic, printable and graphic.

     CONTROL    Defines runes which are control characters.

     DIGIT      Defines runes which are decimal digits, printable and graphic.

     GRAPH      Defines runes which are graphic and printable.

     LOWER      Defines runes which are lower case, printable and graphic.

     PUNCT      Defines runes which are punctuation, printable and graphic.

     SPACE      Defines runes which are spaces.

     UPPER      Defines runes which are upper case, printable and graphic.

     XDIGIT     Defines runes which are hexadecimal digits, printable and
                graphic.

     BLANK      Defines runes which are blank.

     PRINT      Defines runes which are printable.

     IDEOGRAM   Defines runes which are ideograms, printable and graphic.

     SPECIAL    Defines runes which are special characters, printable and
                graphic.

     PHONOGRAM  Defines runes which are phonograms, printable and graphic.

SSEEEE AALLSSOO
     mbrune(3),  rune(3),  setlocale(3),  euc(4),  utf2(4)

BBUUGGSS
     The mmkkllooccaallee utility is overly simplistic.

HHIISSTTOORRYY
     The mmkkllooccaallee utility first appeared in 4.4BSD.