Home | History | Annotate | Download | only in intl

Lines Matching refs:syntax

58   enum { undecided, xpg, cen } syntax;
72 we use XPG4 style, and `_', `+', and `,' if we use CEN syntax. */
74 syntax = undecided;
97 syntax = xpg;
118 if (cp[0] == '@' || (syntax != xpg && cp[0] == '+'))
121 syntax = cp[0] == '@' ? xpg : cen;
125 while (syntax == cen && cp[0] != '\0' && cp[0] != '+'
132 if (syntax != xpg && (cp[0] == '+' || cp[0] == ',' || cp[0] == '_'))
134 syntax = cen;
138 /* Next is special application (CEN syntax). */
150 /* Next is sponsor (CEN syntax). */
162 /* Next is revision (CEN syntax). */
170 /* For CEN syntax values it might be important to have the
171 separator character in the file name, not for XPG syntax. */
172 if (syntax == xpg)