Home | History | Annotate | Download | only in intl

Lines Matching defs:syntax

67   enum { undecided, xpg, cen } syntax;
81 we use XPG4 style, and `_', `+', and `,' if we use CEN syntax. */
83 syntax = undecided;
106 syntax = xpg;
127 if (cp[0] == '@' || (syntax != xpg && cp[0] == '+'))
130 syntax = cp[0] == '@' ? xpg : cen;
134 while (syntax == cen && cp[0] != '\0' && cp[0] != '+'
141 if (syntax != xpg && (cp[0] == '+' || cp[0] == ',' || cp[0] == '_'))
143 syntax = cen;
147 /* Next is special application (CEN syntax). */
159 /* Next is sponsor (CEN syntax). */
171 /* Next is revision (CEN syntax). */
179 /* For CEN syntax values it might be important to have the
180 separator character in the file name, not for XPG syntax. */
181 if (syntax == xpg)