c 139 gnulib-tests/printf-parse.c CHAR_T c = *cp++;
c 140 gnulib-tests/printf-parse.c if (c == '%')
c 449 gnulib-tests/printf-parse.c c = *cp++;
c 450 gnulib-tests/printf-parse.c switch (c)
c 508 gnulib-tests/printf-parse.c c = 'c';
c 524 gnulib-tests/printf-parse.c c = 's';
c 580 gnulib-tests/printf-parse.c dp->conversion = c;
c 607 gnulib-tests/printf-parse.c else if (!c_isascii (c))
c 36 gnulib-tests/test-btowc.c int c;
c 49 gnulib-tests/test-btowc.c for (c = 0; c < 0x80; c++)
c 50 gnulib-tests/test-btowc.c ASSERT (btowc (c) == c);
c 51 gnulib-tests/test-btowc.c for (c = 0xA0; c < 0x100; c++)
c 52 gnulib-tests/test-btowc.c ASSERT (btowc (c) != WEOF);
c 57 gnulib-tests/test-btowc.c for (c = 0; c < 0x80; c++)
c 58 gnulib-tests/test-btowc.c ASSERT (btowc (c) == c);
c 59 gnulib-tests/test-btowc.c for (c = 0x80; c < 0x100; c++)
c 60 gnulib-tests/test-btowc.c ASSERT (btowc (c) == WEOF);
c 32 gnulib-tests/test-c-ctype.c int c;
c 34 gnulib-tests/test-c-ctype.c for (c = -0x80; c < 0x100; c++)
c 36 gnulib-tests/test-c-ctype.c ASSERT (c_isascii (c) == (c >= 0 && c < 0x80));
c 38 gnulib-tests/test-c-ctype.c switch (c)
c 52 gnulib-tests/test-c-ctype.c ASSERT (c_isalnum (c) == 1);
c 55 gnulib-tests/test-c-ctype.c ASSERT (c_isalnum (c) == 0);
c 59 gnulib-tests/test-c-ctype.c switch (c)
c 71 gnulib-tests/test-c-ctype.c ASSERT (c_isalpha (c) == 1);
c 74 gnulib-tests/test-c-ctype.c ASSERT (c_isalpha (c) == 0);
c 78 gnulib-tests/test-c-ctype.c switch (c)
c 81 gnulib-tests/test-c-ctype.c ASSERT (c_isblank (c) == 1);
c 84 gnulib-tests/test-c-ctype.c ASSERT (c_isblank (c) == 0);
c 88 gnulib-tests/test-c-ctype.c ASSERT (c_iscntrl (c) == ((c >= 0 && c < 0x20) || c == 0x7f));
c 90 gnulib-tests/test-c-ctype.c switch (c)
c 94 gnulib-tests/test-c-ctype.c ASSERT (c_isdigit (c) == 1);
c 97 gnulib-tests/test-c-ctype.c ASSERT (c_isdigit (c) == 0);
c 101 gnulib-tests/test-c-ctype.c switch (c)
c 108 gnulib-tests/test-c-ctype.c ASSERT (c_islower (c) == 1);
c 111 gnulib-tests/test-c-ctype.c ASSERT (c_islower (c) == 0);
c 115 gnulib-tests/test-c-ctype.c ASSERT (c_isgraph (c) == ((c >= 0x20 && c < 0x7f) && c != ' '));
c 117 gnulib-tests/test-c-ctype.c ASSERT (c_isprint (c) == (c >= 0x20 && c < 0x7f));
c 119 gnulib-tests/test-c-ctype.c ASSERT (c_ispunct (c) == (c_isgraph (c) && !c_isalnum (c)));
c 121 gnulib-tests/test-c-ctype.c switch (c)
c 124 gnulib-tests/test-c-ctype.c ASSERT (c_isspace (c) == 1);
c 127 gnulib-tests/test-c-ctype.c ASSERT (c_isspace (c) == 0);
c 131 gnulib-tests/test-c-ctype.c switch (c)
c 138 gnulib-tests/test-c-ctype.c ASSERT (c_isupper (c) == 1);
c 141 gnulib-tests/test-c-ctype.c ASSERT (c_isupper (c) == 0);
c 145 gnulib-tests/test-c-ctype.c switch (c)
c 151 gnulib-tests/test-c-ctype.c ASSERT (c_isxdigit (c) == 1);
c 154 gnulib-tests/test-c-ctype.c ASSERT (c_isxdigit (c) == 0);
c 158 gnulib-tests/test-c-ctype.c switch (c)
c 161 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == 'a');
c 162 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == c);
c 165 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == 'b');
c 166 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == c);
c 169 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == 'c');
c 170 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == c);
c 173 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == 'd');
c 174 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == c);
c 177 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == 'e');
c 178 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == c);
c 181 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == 'f');
c 182 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == c);
c 185 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == 'g');
c 186 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == c);
c 189 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == 'h');
c 190 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == c);
c 193 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == 'i');
c 194 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == c);
c 197 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == 'j');
c 198 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == c);
c 201 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == 'k');
c 202 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == c);
c 205 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == 'l');
c 206 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == c);
c 209 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == 'm');
c 210 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == c);
c 213 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == 'n');
c 214 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == c);
c 217 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == 'o');
c 218 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == c);
c 221 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == 'p');
c 222 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == c);
c 225 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == 'q');
c 226 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == c);
c 229 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == 'r');
c 230 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == c);
c 233 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == 's');
c 234 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == c);
c 237 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == 't');
c 238 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == c);
c 241 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == 'u');
c 242 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == c);
c 245 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == 'v');
c 246 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == c);
c 249 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == 'w');
c 250 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == c);
c 253 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == 'x');
c 254 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == c);
c 257 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == 'y');
c 258 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == c);
c 261 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == 'z');
c 262 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == c);
c 265 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == c);
c 266 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == 'A');
c 269 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == c);
c 270 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == 'B');
c 273 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == c);
c 274 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == 'C');
c 277 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == c);
c 278 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == 'D');
c 281 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == c);
c 282 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == 'E');
c 285 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == c);
c 286 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == 'F');
c 289 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == c);
c 290 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == 'G');
c 293 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == c);
c 294 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == 'H');
c 297 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == c);
c 298 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == 'I');
c 301 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == c);
c 302 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == 'J');
c 305 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == c);
c 306 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == 'K');
c 309 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == c);
c 310 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == 'L');
c 313 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == c);
c 314 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == 'M');
c 317 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == c);
c 318 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == 'N');
c 321 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == c);
c 322 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == 'O');
c 325 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == c);
c 326 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == 'P');
c 329 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == c);
c 330 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == 'Q');
c 333 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == c);
c 334 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == 'R');
c 337 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == c);
c 338 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == 'S');
c 341 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == c);
c 342 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == 'T');
c 345 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == c);
c 346 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == 'U');
c 349 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == c);
c 350 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == 'V');
c 353 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == c);
c 354 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == 'W');
c 357 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == c);
c 358 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == 'X');
c 361 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == c);
c 362 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == 'Y');
c 365 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == c);
c 366 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == 'Z');
c 369 gnulib-tests/test-c-ctype.c ASSERT (c_tolower (c) == c);
c 370 gnulib-tests/test-c-ctype.c ASSERT (c_toupper (c) == c);
c 42 gnulib-tests/test-getopt.h int c;
c 45 gnulib-tests/test-getopt.h while ((c = getopt (argc, (char **) argv, options)) != -1)
c 47 gnulib-tests/test-getopt.h switch (c)
c 76 gnulib-tests/test-getopt.h *unrecognized = c;
c 55 gnulib-tests/test-getopt_long.h int c;
c 59 gnulib-tests/test-getopt_long.h while ((c = getopt_long (argc, (char **) argv, options, long_options,
c 63 gnulib-tests/test-getopt_long.h switch (c)
c 97 gnulib-tests/test-getopt_long.h *unrecognized = c;
c 123 gnulib-tests/test-getopt_long.h int c;
c 130 gnulib-tests/test-getopt_long.h c = do_getopt_long (argc, argv, "ab", long_options_required, &option_index);
c 131 gnulib-tests/test-getopt_long.h ASSERT (c == '?');
c 138 gnulib-tests/test-getopt_long.h int c;
c 145 gnulib-tests/test-getopt_long.h c = do_getopt_long (argc, argv, "ab", long_options_required, &option_index);
c 146 gnulib-tests/test-getopt_long.h ASSERT (c == '?');
c 153 gnulib-tests/test-getopt_long.h int c;
c 160 gnulib-tests/test-getopt_long.h c = do_getopt_long (argc, argv, "ab", long_options_required, &option_index);
c 161 gnulib-tests/test-getopt_long.h ASSERT (c == '?');
c 168 gnulib-tests/test-getopt_long.h int c;
c 175 gnulib-tests/test-getopt_long.h c = do_getopt_long (argc, argv, "ab", long_options_required, &option_index);
c 176 gnulib-tests/test-getopt_long.h ASSERT (c == 1001);
c 182 gnulib-tests/test-getopt_long.h int c;
c 189 gnulib-tests/test-getopt_long.h c = do_getopt_long (argc, argv, "ab", long_options_required, &option_index);
c 190 gnulib-tests/test-getopt_long.h ASSERT (c == '?');
c 197 gnulib-tests/test-getopt_long.h int c;
c 204 gnulib-tests/test-getopt_long.h c = do_getopt_long (argc, argv, "ab", long_options_required, &option_index);
c 205 gnulib-tests/test-getopt_long.h ASSERT (c == '?');
c 212 gnulib-tests/test-getopt_long.h int c;
c 219 gnulib-tests/test-getopt_long.h c = do_getopt_long (argc, argv, "ab", long_options_required, &option_index);
c 220 gnulib-tests/test-getopt_long.h ASSERT (c == 1002);
c 226 gnulib-tests/test-getopt_long.h int c;
c 233 gnulib-tests/test-getopt_long.h c = do_getopt_long (argc, argv, "ab", long_options_required, &option_index);
c 234 gnulib-tests/test-getopt_long.h ASSERT (c == 1003);
c 240 gnulib-tests/test-getopt_long.h int c;
c 247 gnulib-tests/test-getopt_long.h c = do_getopt_long (argc, argv, "ab", long_options_required, &option_index);
c 248 gnulib-tests/test-getopt_long.h ASSERT (c == 1003);
c 256 gnulib-tests/test-getopt_long.h int c;
c 263 gnulib-tests/test-getopt_long.h c = do_getopt_long (argc, argv, "W;", long_options_required, &option_index);
c 264 gnulib-tests/test-getopt_long.h ASSERT (c == '?');
c 271 gnulib-tests/test-getopt_long.h int c;
c 278 gnulib-tests/test-getopt_long.h c = do_getopt_long (argc, argv, "W;", long_options_required, &option_index);
c 281 gnulib-tests/test-getopt_long.h if (c == '?')
c 288 gnulib-tests/test-getopt_long.h ASSERT (c == 'W');
c 296 gnulib-tests/test-getopt_long.h int c;
c 304 gnulib-tests/test-getopt_long.h c = do_getopt_long (argc, argv, "W;", long_options_required, &option_index);
c 307 gnulib-tests/test-getopt_long.h if (c == '?')
c 314 gnulib-tests/test-getopt_long.h ASSERT (c == 'W');
c 325 gnulib-tests/test-getopt_long.h int c;
c 333 gnulib-tests/test-getopt_long.h c = do_getopt_long (argc, argv, "W;", NULL, &option_index);
c 334 gnulib-tests/test-getopt_long.h ASSERT (c == 'W');
c 1949 gnulib-tests/test-getopt_long.h int c;
c 1956 gnulib-tests/test-getopt_long.h c = do_getopt_long_only (argc, argv, "ab", long_options_required,
c 1958 gnulib-tests/test-getopt_long.h ASSERT (c == '?');
c 1965 gnulib-tests/test-getopt_long.h int c;
c 1972 gnulib-tests/test-getopt_long.h c = do_getopt_long_only (argc, argv, "abx", long_options_required,
c 1974 gnulib-tests/test-getopt_long.h ASSERT (c == 'x');
c 1981 gnulib-tests/test-getopt_long.h int c;
c 1988 gnulib-tests/test-getopt_long.h c = do_getopt_long_only (argc, argv, "abx", long_options_required,
c 1990 gnulib-tests/test-getopt_long.h ASSERT (c == '?');
c 1997 gnulib-tests/test-getopt_long.h int c;
c 2005 gnulib-tests/test-getopt_long.h c = do_getopt_long_only (argc, argv, "abx", long_options_required,
c 2007 gnulib-tests/test-getopt_long.h ASSERT (c == 'b');
c 2014 gnulib-tests/test-getopt_long.h int c;
c 2022 gnulib-tests/test-getopt_long.h c = do_getopt_long_only (argc, argv, "abx", long_options_required,
c 2024 gnulib-tests/test-getopt_long.h ASSERT (c == 0);
c 2031 gnulib-tests/test-getopt_long.h int c;
c 2038 gnulib-tests/test-getopt_long.h c = do_getopt_long_only (argc, argv, "ab", long_options_required,
c 2040 gnulib-tests/test-getopt_long.h ASSERT (c == '?');
c 2047 gnulib-tests/test-getopt_long.h int c;
c 2054 gnulib-tests/test-getopt_long.h c = do_getopt_long_only (argc, argv, "abx", long_options_required,
c 2056 gnulib-tests/test-getopt_long.h ASSERT (c == '?');
c 2063 gnulib-tests/test-getopt_long.h int c;
c 2070 gnulib-tests/test-getopt_long.h c = do_getopt_long_only (argc, argv, "ab", long_options_required,
c 2072 gnulib-tests/test-getopt_long.h ASSERT (c == 1001);
c 2078 gnulib-tests/test-getopt_long.h int c;
c 2085 gnulib-tests/test-getopt_long.h c = do_getopt_long_only (argc, argv, "abx:", long_options_required,
c 2087 gnulib-tests/test-getopt_long.h ASSERT (c == 1002);
c 2093 gnulib-tests/test-getopt_long.h int c;
c 2100 gnulib-tests/test-getopt_long.h c = do_getopt_long_only (argc, argv, "ab", long_options_required,
c 2106 gnulib-tests/test-getopt_long.h ASSERT (c == 1003 || c == '?');
c 2113 gnulib-tests/test-getopt_long.h int c;
c 2120 gnulib-tests/test-getopt_long.h c = do_getopt_long_only (argc, argv, "abx::", long_options_required,
c 2126 gnulib-tests/test-getopt_long.h ASSERT (c == 1003 || c == '?');
c 2134 gnulib-tests/test-getopt_long.h int c;
c 2141 gnulib-tests/test-getopt_long.h c = do_getopt_long_only (argc, argv, "abx::", long_options_required,
c 2143 gnulib-tests/test-getopt_long.h ASSERT (c == 'x');
c 38 gnulib-tests/test-inttostr.c #define ISDIGIT(c) ((unsigned int) (c) - '0' <= 9)
c 116 gnulib-tests/test-mbrtowc-w32.c int c;
c 120 gnulib-tests/test-mbrtowc-w32.c for (c = 0; c < 0x100; c++)
c 121 gnulib-tests/test-mbrtowc-w32.c switch (c)
c 145 gnulib-tests/test-mbrtowc-w32.c buf[0] = c;
c 149 gnulib-tests/test-mbrtowc-w32.c ASSERT (wc == c);
c 73 gnulib-tests/test-mbrtowc.c int c;
c 77 gnulib-tests/test-mbrtowc.c for (c = 0; c < 0x100; c++)
c 78 gnulib-tests/test-mbrtowc.c switch (c)
c 102 gnulib-tests/test-mbrtowc.c buf[0] = c;
c 106 gnulib-tests/test-mbrtowc.c ASSERT (wc == c);
c 59 gnulib-tests/test-open.h char c;
c 60 gnulib-tests/test-open.h ASSERT (read (fd, &c, 1) == 0);
c 30 gnulib-tests/test-signal.c volatile sig_atomic_t c;
c 130 gnulib-tests/test-signal.c return s.a + s.b + s.c + s.e;
c 63 gnulib-tests/test-stdbool.c char c[__bool_true_false_are_defined == 1 ? 1 : -1];
c 30 gnulib-tests/test-stddef.c size_t c = 2;
c 53 gnulib-tests/test-verify.c verify (c == 2); /* should be ok */
c 102 gnulib-tests/test-wcrtomb-w32.c int c;
c 104 gnulib-tests/test-wcrtomb-w32.c for (c = 0; c < 0x100; c++)
c 105 gnulib-tests/test-wcrtomb-w32.c switch (c)
c 129 gnulib-tests/test-wcrtomb-w32.c ret = wcrtomb (buf, btowc (c), NULL);
c 131 gnulib-tests/test-wcrtomb-w32.c ASSERT (buf[0] == (char) c);
c 76 gnulib-tests/test-wcrtomb.c int c;
c 78 gnulib-tests/test-wcrtomb.c for (c = 0; c < 0x100; c++)
c 79 gnulib-tests/test-wcrtomb.c switch (c)
c 103 gnulib-tests/test-wcrtomb.c ret = wcrtomb (buf, btowc (c), NULL);
c 105 gnulib-tests/test-wcrtomb.c ASSERT (buf[0] == (char) c);
c 44 gnulib-tests/unistr/test-u8-mbtoucr.c ucs4_t c;
c 47 gnulib-tests/unistr/test-u8-mbtoucr.c for (c = 0; c < 0x80; c++)
c 49 gnulib-tests/unistr/test-u8-mbtoucr.c buf[0] = c;
c 53 gnulib-tests/unistr/test-u8-mbtoucr.c ASSERT (uc == c);
c 29 lib/btowc.c if (c != EOF)
c 34 lib/btowc.c buf[0] = c;
c 32 lib/c-ctype.c return (c >= 0x00 && c <= 0x7f);
c 41 lib/c-ctype.c return ((c >= '0' && c <= '9')
c 42 lib/c-ctype.c || ((c & ~0x20) >= 'A' && (c & ~0x20) <= 'Z'));
c 44 lib/c-ctype.c return ((c >= '0' && c <= '9')
c 45 lib/c-ctype.c || (c >= 'A' && c <= 'Z')
c 46 lib/c-ctype.c || (c >= 'a' && c <= 'z'));
c 49 lib/c-ctype.c switch (c)
c 75 lib/c-ctype.c return ((c & ~0x20) >= 'A' && (c & ~0x20) <= 'Z');
c 77 lib/c-ctype.c return ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z'));
c 80 lib/c-ctype.c switch (c)
c 102 lib/c-ctype.c return (c == ' ' || c == '\t');
c 109 lib/c-ctype.c return ((c & ~0x1f) == 0 || c == 0x7f);
c 111 lib/c-ctype.c switch (c)
c 143 lib/c-ctype.c return (c >= '0' && c <= '9');
c 145 lib/c-ctype.c switch (c)
c 160 lib/c-ctype.c return (c >= 'a' && c <= 'z');
c 162 lib/c-ctype.c switch (c)
c 180 lib/c-ctype.c return (c >= '!' && c <= '~');
c 182 lib/c-ctype.c switch (c)
c 214 lib/c-ctype.c return (c >= ' ' && c <= '~');
c 216 lib/c-ctype.c switch (c)
c 248 lib/c-ctype.c return ((c >= '!' && c <= '~')
c 249 lib/c-ctype.c && !((c >= '0' && c <= '9')
c 250 lib/c-ctype.c || ((c & ~0x20) >= 'A' && (c & ~0x20) <= 'Z')));
c 252 lib/c-ctype.c switch (c)
c 271 lib/c-ctype.c return (c == ' ' || c == '\t'
c 272 lib/c-ctype.c || c == '\n' || c == '\v' || c == '\f' || c == '\r');
c 279 lib/c-ctype.c return (c >= 'A' && c <= 'Z');
c 281 lib/c-ctype.c switch (c)
c 301 lib/c-ctype.c return ((c >= '0' && c <= '9')
c 302 lib/c-ctype.c || ((c & ~0x20) >= 'A' && (c & ~0x20) <= 'F'));
c 304 lib/c-ctype.c return ((c >= '0' && c <= '9')
c 305 lib/c-ctype.c || (c >= 'A' && c <= 'F')
c 306 lib/c-ctype.c || (c >= 'a' && c <= 'f'));
c 309 lib/c-ctype.c switch (c)
c 326 lib/c-ctype.c return (c >= 'A' && c <= 'Z' ? c - 'A' + 'a' : c);
c 328 lib/c-ctype.c switch (c)
c 356 lib/c-ctype.c default: return c;
c 365 lib/c-ctype.c return (c >= 'a' && c <= 'z' ? c - 'a' + 'A' : c);
c 367 lib/c-ctype.c switch (c)
c 395 lib/c-ctype.c default: return c;
c 123 lib/c-ctype.h extern bool c_isascii (int c); /* not locale dependent */
c 125 lib/c-ctype.h extern bool c_isalnum (int c);
c 126 lib/c-ctype.h extern bool c_isalpha (int c);
c 127 lib/c-ctype.h extern bool c_isblank (int c);
c 128 lib/c-ctype.h extern bool c_iscntrl (int c);
c 129 lib/c-ctype.h extern bool c_isdigit (int c);
c 130 lib/c-ctype.h extern bool c_islower (int c);
c 131 lib/c-ctype.h extern bool c_isgraph (int c);
c 132 lib/c-ctype.h extern bool c_isprint (int c);
c 133 lib/c-ctype.h extern bool c_ispunct (int c);
c 134 lib/c-ctype.h extern bool c_isspace (int c);
c 135 lib/c-ctype.h extern bool c_isupper (int c);
c 136 lib/c-ctype.h extern bool c_isxdigit (int c);
c 138 lib/c-ctype.h extern int c_tolower (int c);
c 139 lib/c-ctype.h extern int c_toupper (int c);
c 148 lib/c-ctype.h ({ int __c = (c); \
c 157 lib/c-ctype.h ({ int __c = (c); \
c 164 lib/c-ctype.h ({ int __c = (c); \
c 176 lib/c-ctype.h ({ int __c = (c); \
c 182 lib/c-ctype.h ({ int __c = (c); \
c 190 lib/c-ctype.h ({ int __c = (c); \
c 197 lib/c-ctype.h ({ int __c = (c); \
c 205 lib/c-ctype.h ({ int __c = (c); \
c 213 lib/c-ctype.h ({ int __c = (c); \
c 221 lib/c-ctype.h ({ int __c = (c); \
c 229 lib/c-ctype.h ({ int __c = (c); \
c 237 lib/c-ctype.h ({ int _c = (c); \
c 244 lib/c-ctype.h ({ int __c = (c); \
c 252 lib/c-ctype.h ({ int __c = (c); \
c 262 lib/c-ctype.h ({ int __c = (c); \
c 269 lib/c-ctype.h ({ int __c = (c); \
c 280 lib/c-ctype.h ({ int __c = (c); \
c 285 lib/c-ctype.h ({ int __c = (c); \
c 198 lib/diffseq.h OFFSET c; /* Cost. */
c 205 lib/diffseq.h for (c = 1;; ++c)
c 288 lib/diffseq.h if (200 < c && big_snake && ctxt->heuristic)
c 300 lib/diffseq.h if (v > 12 * (c + (dd < 0 ? -dd : dd)))
c 339 lib/diffseq.h if (v > 12 * (c + (dd < 0 ? -dd : dd)))
c 372 lib/diffseq.h if (c >= ctxt->too_expensive)
c 82 lib/error.c # define putc(c, fp) INTUSE(_IO_putc) (c, fp)
c 529 lib/exclude.c int c;
c 537 lib/exclude.c while ((c = getc (in)) != EOF)
c 541 lib/exclude.c buf[buf_count++] = c;
c 90 lib/fnmatch.c # define isblank(c) ((c) == ' ' || (c) == '\t')
c 148 lib/fnmatch.c # define FOLD(c) ((flags & FNM_CASEFOLD) ? tolower (c) : (c))
c 178 lib/fnmatch.c # define FOLD(c) ((flags & FNM_CASEFOLD) ? towlower (c) : (c))
c 33 lib/fnmatch_loop.c register UCHAR c;
c 44 lib/fnmatch_loop.c while ((c = *p++) != L_('\0'))
c 47 lib/fnmatch_loop.c c = FOLD (c);
c 49 lib/fnmatch_loop.c switch (c)
c 56 lib/fnmatch_loop.c res = EXT (c, p, n, string_end, no_leading_period,
c 73 lib/fnmatch_loop.c c = *p++;
c 74 lib/fnmatch_loop.c if (c == L_('\0'))
c 77 lib/fnmatch_loop.c c = FOLD (c);
c 79 lib/fnmatch_loop.c if (n == string_end || FOLD ((UCHAR) *n) != c)
c 88 lib/fnmatch_loop.c res = EXT (c, p, n, string_end, no_leading_period,
c 97 lib/fnmatch_loop.c for (c = *p++; c == L_('?') || c == L_('*'); c = *p++)
c 110 lib/fnmatch_loop.c if (c == L_('?'))
c 129 lib/fnmatch_loop.c if (c == L_('\0'))
c 159 lib/fnmatch_loop.c if (c == L_('[')
c 161 lib/fnmatch_loop.c && (c == L_('@') || c == L_('+') || c == L_('!'))
c 173 lib/fnmatch_loop.c else if (c == L_('/') && (flags & FNM_FILE_NAME))
c 188 lib/fnmatch_loop.c if (c == L_('\\') && !(flags & FNM_NOESCAPE))
c 189 lib/fnmatch_loop.c c = *p;
c 190 lib/fnmatch_loop.c c = FOLD (c);
c 192 lib/fnmatch_loop.c if (FOLD ((UCHAR) *n) == c
c 230 lib/fnmatch_loop.c c = *p++;
c 233 lib/fnmatch_loop.c if (!(flags & FNM_NOESCAPE) && c == L_('\\'))
c 237 lib/fnmatch_loop.c c = FOLD ((UCHAR) *p);
c 242 lib/fnmatch_loop.c else if (c == L_('[') && *p == L_(':'))
c 259 lib/fnmatch_loop.c c = *++p;
c 260 lib/fnmatch_loop.c if (c == L_(':') && p[1] == L_(']'))
c 265 lib/fnmatch_loop.c if (c < L_('a') || c >= L_('z'))
c 270 lib/fnmatch_loop.c c = L_('[');
c 273 lib/fnmatch_loop.c str[c1++] = c;
c 308 lib/fnmatch_loop.c c = *p++;
c 311 lib/fnmatch_loop.c else if (c == L_('[') && *p == L_('='))
c 318 lib/fnmatch_loop.c c = *++p;
c 319 lib/fnmatch_loop.c if (c == L_('\0'))
c 322 lib/fnmatch_loop.c c = L_('[');
c 325 lib/fnmatch_loop.c str[0] = c;
c 327 lib/fnmatch_loop.c c = *++p;
c 328 lib/fnmatch_loop.c if (c != L_('=') || p[1] != L_(']'))
c 331 lib/fnmatch_loop.c c = L_('[');
c 413 lib/fnmatch_loop.c c = *p++;
c 416 lib/fnmatch_loop.c else if (c == L_('\0'))
c 421 lib/fnmatch_loop.c c = L_('[');
c 431 lib/fnmatch_loop.c if (c == L_('[') && *p == L_('.'))
c 440 lib/fnmatch_loop.c c = *++p;
c 441 lib/fnmatch_loop.c if (c == L_('.') && p[1] == L_(']'))
c 446 lib/fnmatch_loop.c if (c == '\0')
c 468 lib/fnmatch_loop.c c = *p++;
c 583 lib/fnmatch_loop.c c = *p++;
c 593 lib/fnmatch_loop.c c = *p++;
c 603 lib/fnmatch_loop.c c = FOLD (c);
c 612 lib/fnmatch_loop.c if (!is_range && c == fn)
c 621 lib/fnmatch_loop.c cold = c;
c 622 lib/fnmatch_loop.c c = *p++;
c 625 lib/fnmatch_loop.c if (c == L_('-') && *p != L_(']'))
c 669 lib/fnmatch_loop.c c = *++p;
c 670 lib/fnmatch_loop.c if (c == L_('.') && p[1] == L_(']'))
c 675 lib/fnmatch_loop.c if (c == '\0')
c 785 lib/fnmatch_loop.c c = *p++;
c 858 lib/fnmatch_loop.c c = *p++;
c 862 lib/fnmatch_loop.c if (c == L_(']'))
c 875 lib/fnmatch_loop.c c = *p++;
c 877 lib/fnmatch_loop.c if (c == L_('\0'))
c 881 lib/fnmatch_loop.c if (!(flags & FNM_NOESCAPE) && c == L_('\\'))
c 888 lib/fnmatch_loop.c else if (c == L_('[') && *p == L_(':'))
c 895 lib/fnmatch_loop.c c = *++p;
c 902 lib/fnmatch_loop.c if (c < L_('a') || c >= L_('z'))
c 909 lib/fnmatch_loop.c c = *p++;
c 911 lib/fnmatch_loop.c else if (c == L_('[') && *p == L_('='))
c 913 lib/fnmatch_loop.c c = *++p;
c 914 lib/fnmatch_loop.c if (c == L_('\0'))
c 916 lib/fnmatch_loop.c c = *++p;
c 917 lib/fnmatch_loop.c if (c != L_('=') || p[1] != L_(']'))
c 920 lib/fnmatch_loop.c c = *p++;
c 922 lib/fnmatch_loop.c else if (c == L_('[') && *p == L_('.'))
c 927 lib/fnmatch_loop.c c = *++p;
c 928 lib/fnmatch_loop.c if (c == '\0')
c 935 lib/fnmatch_loop.c c = *p++;
c 938 lib/fnmatch_loop.c while (c != L_(']'));
c 951 lib/fnmatch_loop.c res = EXT (c, p, n, string_end, no_leading_period, flags);
c 960 lib/fnmatch_loop.c if (n == string_end || c != (UCHAR) *n)
c 969 lib/fnmatch_loop.c if (n == string_end || c != FOLD ((UCHAR) *n))
c 788 lib/getopt.c char c = *d->__nextchar++;
c 789 lib/getopt.c const char *temp = strchr (optstring, c);
c 795 lib/getopt.c if (temp == NULL || c == ':' || c == ';')
c 806 lib/getopt.c argv[0], c);
c 808 lib/getopt.c fprintf (stderr, _("%s: invalid option -- '%c'\n"), argv[0], c);
c 828 lib/getopt.c d->optopt = c;
c 862 lib/getopt.c argv[0], c) >= 0)
c 879 lib/getopt.c argv[0], c);
c 882 lib/getopt.c d->optopt = c;
c 884 lib/getopt.c c = ':';
c 886 lib/getopt.c c = '?';
c 887 lib/getopt.c return c;
c 1090 lib/getopt.c argv[0], c) >= 0)
c 1107 lib/getopt.c argv[0], c);
c 1110 lib/getopt.c d->optopt = c;
c 1112 lib/getopt.c c = ':';
c 1114 lib/getopt.c c = '?';
c 1123 lib/getopt.c return c;
c 1185 lib/getopt.c int c;
c 1192 lib/getopt.c c = getopt (argc, argv, "abc:d:0123456789");
c 1193 lib/getopt.c if (c == -1)
c 1196 lib/getopt.c switch (c)
c 1211 lib/getopt.c printf ("option %c\n", c);
c 1230 lib/getopt.c printf ("?? getopt returned character code 0%o ??\n", c);
c 87 lib/getopt1.c int c;
c 105 lib/getopt1.c c = getopt_long (argc, argv, "abc:d:0123456789",
c 107 lib/getopt1.c if (c == -1)
c 110 lib/getopt1.c switch (c)
c 132 lib/getopt1.c printf ("option %c\n", c);
c 155 lib/getopt1.c printf ("?? getopt returned character code 0%o ??\n", c);
c 192 lib/localcharset.c int c;
c 198 lib/localcharset.c c = getc (fp);
c 199 lib/localcharset.c if (c == EOF)
c 201 lib/localcharset.c if (c == '\n' || c == ' ' || c == '\t')
c 203 lib/localcharset.c if (c == '#')
c 207 lib/localcharset.c c = getc (fp);
c 208 lib/localcharset.c while (!(c == EOF || c == '\n'));
c 209 lib/localcharset.c if (c == EOF)
c 213 lib/localcharset.c ungetc (c, fp);
c 310 lib/mbchar.h return (is_basic_table [(unsigned char) c >> 5] >> ((unsigned char) c & 31))
c 319 lib/mbchar.h switch (c)
c 134 lib/mbrtowc.c unsigned char c = (unsigned char) p[0];
c 136 lib/mbrtowc.c if (c >= 0xc2)
c 138 lib/mbrtowc.c if (c < 0xe0)
c 143 lib/mbrtowc.c else if (c < 0xf0)
c 152 lib/mbrtowc.c && (c >= 0xe1 || c2 >= 0xa0)
c 153 lib/mbrtowc.c && (c != 0xed || c2 < 0xa0))
c 157 lib/mbrtowc.c else if (c <= 0xf4)
c 166 lib/mbrtowc.c && (c >= 0xf1 || c2 >= 0x90)
c 167 lib/mbrtowc.c && (c < 0xf4 || (c == 0xf4 && c2 < 0x90)))
c 192 lib/mbrtowc.c unsigned char c = (unsigned char) p[0];
c 194 lib/mbrtowc.c if ((c >= 0xa1 && c < 0xff) || c == 0x8e || c == 0x8f)
c 199 lib/mbrtowc.c unsigned char c = (unsigned char) p[0];
c 201 lib/mbrtowc.c if (c == 0x8f)
c 217 lib/mbrtowc.c unsigned char c = (unsigned char) p[0];
c 219 lib/mbrtowc.c if (c >= 0xa1 && c < 0xff)
c 228 lib/mbrtowc.c unsigned char c = (unsigned char) p[0];
c 230 lib/mbrtowc.c if ((c >= 0xa1 && c < 0xff) || c == 0x8e)
c 235 lib/mbrtowc.c unsigned char c = (unsigned char) p[0];
c 237 lib/mbrtowc.c if (c == 0x8e)
c 246 lib/mbrtowc.c unsigned char c = (unsigned char) p[0];
c 248 lib/mbrtowc.c if ((c >= 0x90 && c <= 0xe3) || (c >= 0xf8 && c <= 0xfe))
c 253 lib/mbrtowc.c unsigned char c = (unsigned char) p[0];
c 255 lib/mbrtowc.c if (c >= 0x90 && c <= 0xe3)
c 279 lib/mbrtowc.c unsigned char c = (unsigned char) p[0];
c 281 lib/mbrtowc.c if ((c >= 0x81 && c <= 0x9f) || (c >= 0xe0 && c <= 0xea)
c 282 lib/mbrtowc.c || (c >= 0xf0 && c <= 0xf9))
c 31 lib/mbsstr.c #define CANON_ELEMENT(c) c
c 72 lib/memchr.c unsigned reg_char c;
c 74 lib/memchr.c c = (unsigned char) c_in;
c 81 lib/memchr.c if (*char_ptr == c)
c 93 lib/memchr.c repeated_c = c | (c << 8);
c 164 lib/memchr.c if (*char_ptr == c)
c 34 lib/prepargs.c # define IN_CTYPE_DOMAIN(c) ((c) <= 0177)
c 37 lib/prepargs.c #define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c))
c 130 lib/quotearg.c unsigned char uc = c;
c 222 lib/quotearg.c buffer[len] = (c); \
c 304 lib/quotearg.c unsigned char c;
c 318 lib/quotearg.c c = arg[i];
c 319 lib/quotearg.c switch (c)
c 337 lib/quotearg.c c = '0';
c 367 lib/quotearg.c c = arg[i + 2];
c 392 lib/quotearg.c case '\\': esc = c;
c 406 lib/quotearg.c c = esc;
c 487 lib/quotearg.c printable = isprint (c) != 0;
c 561 lib/quotearg.c STORE ('0' + (c >> 6));
c 562 lib/quotearg.c STORE ('0' + ((c >> 3) & 7));
c 563 lib/quotearg.c c = '0' + (c & 7);
c 572 lib/quotearg.c STORE (c);
c 573 lib/quotearg.c c = arg[++i];
c 583 lib/quotearg.c && quote_these_too[c / INT_BITS] & (1 << (c % INT_BITS)))
c 593 lib/quotearg.c STORE (c);
c 322 lib/regcomp.c re_set_fastmap (fastmap, icase, dfa->nodes[node].opr.c);
c 332 lib/regcomp.c *p++ = dfa->nodes[node].opr.c;
c 336 lib/regcomp.c *p++ = dfa->nodes[node].opr.c;
c 393 lib/regcomp.c unsigned char c = 0;
c 398 lib/regcomp.c if (__mbrtowc (NULL, (char *) &c, 1, &mbs) == (size_t) -2)
c 399 lib/regcomp.c re_set_fastmap (fastmap, false, (int) c);
c 401 lib/regcomp.c while (++c != 0);
c 1078 lib/regcomp.c if (dfa->nodes[node].opr.c >= ASCII_CHARS)
c 1130 lib/regcomp.c && dfa->nodes[node].opr.c >= ASCII_CHARS)
c 1775 lib/regcomp.c unsigned char c;
c 1783 lib/regcomp.c c = re_string_peek_byte (input, 0);
c 1784 lib/regcomp.c token->opr.c = c;
c 1797 lib/regcomp.c if (c == '\\')
c 1807 lib/regcomp.c token->opr.c = c2;
c 1931 lib/regcomp.c token->word_char = IS_WORD_CHAR (token->opr.c);
c 1933 lib/regcomp.c switch (c)
c 2014 lib/regcomp.c unsigned char c;
c 2020 lib/regcomp.c c = re_string_peek_byte (input, 0);
c 2021 lib/regcomp.c token->opr.c = c;
c 2032 lib/regcomp.c if (c == '\\' && (syntax & RE_BACKSLASH_ESCAPE_IN_LISTS)
c 2039 lib/regcomp.c token->opr.c = c2;
c 2043 lib/regcomp.c if (c == '[') /* '[' is a special char in a bracket exps. */
c 2051 lib/regcomp.c token->opr.c = c2;
c 2070 lib/regcomp.c token->opr.c = c;
c 2076 lib/regcomp.c switch (c)
c 2490 lib/regcomp.c if (token->type == CHARACTER && token->opr.c == ',')
c 2502 lib/regcomp.c : ((token->type == CHARACTER && token->opr.c == ',')
c 3367 lib/regcomp.c elem->opr.ch = token->opr.c;
c 3379 lib/regcomp.c unsigned char ch, delim = token->opr.c;
c 3719 lib/regcomp.c unsigned char c;
c 3723 lib/regcomp.c c = token->opr.c;
c 3726 lib/regcomp.c if (token->type == OP_CLOSE_DUP_NUM || c == ',')
c 3728 lib/regcomp.c num = ((token->type != CHARACTER || c < '0' || '9' < c
c 3731 lib/regcomp.c : ((num == REG_MISSING) ? c - '0' : num * 10 + c - '0'));
c 791 lib/regex_internal.c int c = pstr->raw_mbs[pstr->raw_mbs_idx + offset - 1];
c 794 lib/regex_internal.c c = pstr->trans[c];
c 795 lib/regex_internal.c pstr->tip_context = (bitset_contain (pstr->word_char, c)
c 797 lib/regex_internal.c : ((IS_NEWLINE (c) && pstr->newline_anchor)
c 930 lib/regex_internal.c int c;
c 962 lib/regex_internal.c c = re_string_byte_at (input, idx);
c 963 lib/regex_internal.c if (bitset_contain (input->word_char, c))
c 965 lib/regex_internal.c return IS_NEWLINE (c) && input->newline_anchor ? CONTEXT_NEWLINE : 0;
c 331 lib/regex_internal.h unsigned char c; /* for CHARACTER */
c 509 lib/regex_internal.h #define IS_WORD_CONTEXT(c) ((c) & CONTEXT_WORD)
c 510 lib/regex_internal.h #define IS_NEWLINE_CONTEXT(c) ((c) & CONTEXT_NEWLINE)
c 511 lib/regex_internal.h #define IS_BEGBUF_CONTEXT(c) ((c) & CONTEXT_BEGBUF)
c 512 lib/regex_internal.h #define IS_ENDBUF_CONTEXT(c) ((c) & CONTEXT_ENDBUF)
c 513 lib/regex_internal.h #define IS_ORDINARY_CONTEXT(c) ((c) == 0)
c 3620 lib/regexec.c bitset_set (accepts, node->opr.c);
c 3723 lib/regexec.c if (type == CHARACTER && !bitset_contain (dests_ch[j], node->opr.c))
c 3801 lib/regexec.c unsigned char c = re_string_byte_at (input, str_idx), d;
c 3802 lib/regexec.c if (BE (c < 0xc2, 1))
c 3809 lib/regexec.c if (c < 0xe0)
c 3811 lib/regexec.c else if (c < 0xf0)
c 3814 lib/regexec.c if (c == 0xe0 && d < 0xa0)
c 3817 lib/regexec.c else if (c < 0xf8)
c 3820 lib/regexec.c if (c == 0xf0 && d < 0x90)
c 3823 lib/regexec.c else if (c < 0xfc)
c 3826 lib/regexec.c if (c == 0xf8 && d < 0x88)
c 3829 lib/regexec.c else if (c < 0xfe)
c 3832 lib/regexec.c if (c == 0xfc && d < 0x84)
c 4105 lib/regexec.c if (node->opr.c != ch)
c 246 lib/strtol.c register UCHAR_TYPE c;
c 331 lib/strtol.c for (c = *end; c != L_('\0'); c = *++end)
c 332 lib/strtol.c if ((wchar_t) c != thousands
c 333 lib/strtol.c && ((wchar_t) c < L_('0') || (wchar_t) c > L_('9'))
c 334 lib/strtol.c && (!ISALPHA (c) || (int) (TOUPPER (c) - L_('A') + 10) >= base))
c 350 lib/strtol.c for (c = *s; c != L_('\0'); c = *++s)
c 354 lib/strtol.c if (c >= L_('0') && c <= L_('9'))
c 355 lib/strtol.c c -= L_('0');
c 356 lib/strtol.c else if (ISALPHA (c))
c 357 lib/strtol.c c = TOUPPER (c) - L_('A') + 10;
c 360 lib/strtol.c if ((int) c >= base)
c 363 lib/strtol.c if (i > cutoff || (i == cutoff && c > cutlim))
c 368 lib/strtol.c i += c;
c 149 lib/unistr.in.h uint8_t c = *s;
c 151 lib/unistr.in.h if (c < 0x80)
c 153 lib/unistr.in.h *puc = c;
c 172 lib/unistr.in.h uint16_t c = *s;
c 174 lib/unistr.in.h if (c < 0xd800 || c >= 0xe000)
c 176 lib/unistr.in.h *puc = c;
c 194 lib/unistr.in.h uint32_t c = *s;
c 197 lib/unistr.in.h if (c < 0xd800 || (c >= 0xe000 && c < 0x110000))
c 199 lib/unistr.in.h *puc = c;
c 220 lib/unistr.in.h uint8_t c = *s;
c 222 lib/unistr.in.h if (c < 0x80)
c 224 lib/unistr.in.h *puc = c;
c 243 lib/unistr.in.h uint16_t c = *s;
c 245 lib/unistr.in.h if (c < 0xd800 || c >= 0xe000)
c 247 lib/unistr.in.h *puc = c;
c 264 lib/unistr.in.h uint32_t c = *s;
c 266 lib/unistr.in.h if (c < 0xd800 || (c >= 0xe000 && c < 0x110000))
c 267 lib/unistr.in.h *puc = c;
c 28 lib/unistr/u8-mbtoucr.c uint8_t c = *s;
c 30 lib/unistr/u8-mbtoucr.c if (c < 0x80)
c 32 lib/unistr/u8-mbtoucr.c *puc = c;
c 35 lib/unistr/u8-mbtoucr.c else if (c >= 0xc2)
c 37 lib/unistr/u8-mbtoucr.c if (c < 0xe0)
c 43 lib/unistr/u8-mbtoucr.c *puc = ((unsigned int) (c & 0x1f) << 6)
c 56 lib/unistr/u8-mbtoucr.c else if (c < 0xf0)
c 61 lib/unistr/u8-mbtoucr.c && (c >= 0xe1 || s[1] >= 0xa0)
c 62 lib/unistr/u8-mbtoucr.c && (c != 0xed || s[1] < 0xa0))
c 68 lib/unistr/u8-mbtoucr.c *puc = ((unsigned int) (c & 0x0f) << 12)
c 91 lib/unistr/u8-mbtoucr.c else if (c < 0xf8)
c 96 lib/unistr/u8-mbtoucr.c && (c >= 0xf1 || s[1] >= 0x90)
c 98 lib/unistr/u8-mbtoucr.c && (c < 0xf4 || (c == 0xf4 && s[1] < 0x90))
c 110 lib/unistr/u8-mbtoucr.c *puc = ((unsigned int) (c & 0x07) << 18)
c 144 lib/unistr/u8-mbtoucr.c else if (c < 0xfc)
c 149 lib/unistr/u8-mbtoucr.c && (c >= 0xf9 || s[1] >= 0x88))
c 163 lib/unistr/u8-mbtoucr.c *puc = ((unsigned int) (c & 0x03) << 24)
c 206 lib/unistr/u8-mbtoucr.c else if (c < 0xfe)
c 211 lib/unistr/u8-mbtoucr.c && (c >= 0xfd || s[1] >= 0x84))
c 229 lib/unistr/u8-mbtoucr.c *puc = ((unsigned int) (c & 0x01) << 30)
c 79 lib/xstrtol-error.c option_buffer[0] = c;
c 96 lib/xstrtol-error.c xstrtol_error (err, opt_idx, c, long_options, arg, exit_failure);
c 202 src/cmp.c int c, f, exit_status;
c 215 src/cmp.c while ((c = getopt_long (argc, argv, "bci:ln:sv", long_options, 0))
c 217 src/cmp.c switch (c)
c 652 src/cmp.c if (! isprint (c))
c 654 src/cmp.c if (c >= 128)
c 658 src/cmp.c c -= 128;
c 660 src/cmp.c if (c < 32)
c 663 src/cmp.c c += 64;
c 665 src/cmp.c else if (c == 127)
c 668 src/cmp.c c = '?';
c 672 src/cmp.c *buf++ = c;
c 264 src/diff.c int c;
c 291 src/diff.c while ((c = getopt_long (argc, argv, shortopts, longopts, NULL)) != -1)
c 293 src/diff.c switch (c)
c 309 src/diff.c ocontext = c - '0';
c 311 src/diff.c || ((ocontext = 10 * ocontext + c - '0') < 0))
c 347 src/diff.c specify_style (c == 'U' ? OUTPUT_UNIFIED : OUTPUT_CONTEXT);
c 612 src/diff.c c -= UNCHANGED_LINE_FORMAT_OPTION;
c 613 src/diff.c specify_value (&line_format[c], optarg, line_format_option[c]);
c 621 src/diff.c c -= UNCHANGED_GROUP_FORMAT_OPTION;
c 622 src/diff.c specify_value (&group_format[c], optarg, group_format_option[c]);
c 628 src/diff.c prev = c;
c 218 src/diff3.c int c, i;
c 240 src/diff3.c while ((c = getopt_long (argc, argv, "aeimvx3AEL:TX", longopts, 0)) != -1)
c 242 src/diff3.c switch (c)
c 1063 src/diff3.c unsigned char c = *s;
c 1066 src/diff3.c if (! ISDIGIT (c))
c 1071 src/diff3.c num = c - '0' + num * 10;
c 1072 src/diff3.c c = *++s;
c 1074 src/diff3.c while (ISDIGIT (c));
c 1629 src/diff3.c int c;
c 1662 src/diff3.c c = getc (infile);
c 1663 src/diff3.c if (c == EOF)
c 1670 src/diff3.c putc (c, outputfile);
c 1672 src/diff3.c while (c != '\n');
c 1717 src/diff3.c while ((c = getc (infile)) != '\n')
c 1718 src/diff3.c if (c == EOF)
c 1731 src/diff3.c while ((c = getc (infile)) != EOF || !(ferror (infile) | feof (infile)))
c 1732 src/diff3.c putc (c, outputfile);
c 277 src/dir.c int c = file_name_cmp (*p, greater_name);
c 278 src/dir.c if (0 <= c)
c 280 src/dir.c if (c == 0)
c 122 src/ifdef.c register char c;
c 125 src/ifdef.c while ((c = *f) != endchar && c != 0)
c 128 src/ifdef.c if (c == '%')
c 129 src/ifdef.c switch ((c = *f++))
c 197 src/ifdef.c c = '%';
c 203 src/ifdef.c putc (c, out);
c 267 src/ifdef.c register char c;
c 270 src/ifdef.c while ((c = *f++) != 0)
c 273 src/ifdef.c if (c == '%')
c 274 src/ifdef.c switch ((c = *f++))
c 294 src/ifdef.c c = '%';
c 299 src/ifdef.c putc (c, out);
c 310 src/ifdef.c char c;
c 316 src/ifdef.c while ((c = *f++) == '-' || c == '\'' || c == '0')
c 318 src/ifdef.c while (ISDIGIT (c))
c 319 src/ifdef.c c = *f++;
c 320 src/ifdef.c if (c == '.')
c 321 src/ifdef.c while (ISDIGIT (c = *f++))
c 325 src/ifdef.c switch (c)
c 372 src/ifdef.c *p++ = c;
c 399 src/ifdef.c char c = *p++;
c 401 src/ifdef.c switch (c)
c 409 src/ifdef.c while ((c = *p++) != '\'')
c 411 src/ifdef.c unsigned int digit = c - '0';
c 422 src/ifdef.c value = c;
c 30 src/io.c #define HASH(h, c) ((c) + ROL (h, 7))
c 227 src/io.c unsigned char c;
c 233 src/io.c while ((c = *p++) != '\n')
c 234 src/io.c if (! isspace (c))
c 235 src/io.c h = HASH (h, ig_case ? tolower (c) : c);
c 239 src/io.c while ((c = *p++) != '\n')
c 241 src/io.c if (isspace (c))
c 244 src/io.c if ((c = *p++) == '\n')
c 246 src/io.c while (isspace (c));
c 252 src/io.c h = HASH (h, ig_case ? tolower (c) : c);
c 261 src/io.c while ((c = *p++) != '\n')
c 264 src/io.c && isspace (c))
c 280 src/io.c switch (c)
c 287 src/io.c c = ' ';
c 304 src/io.c c = tolower (c);
c 307 src/io.c h = HASH (h, c);
c 315 src/io.c while ((c = *p++) != '\n')
c 316 src/io.c h = HASH (h, tolower (c));
c 318 src/io.c while ((c = *p++) != '\n')
c 319 src/io.c h = HASH (h, c);
c 844 src/sdiff.c int c;
c 847 src/sdiff.c c = getchar ();
c 848 src/sdiff.c if (! isspace (c) || c == '\n')
c 854 src/sdiff.c return c;
c 860 src/sdiff.c int c;
c 861 src/sdiff.c while ((c = getchar ()) != '\n' && c != EOF)
c 83 src/side.c register char c = *text_pointer++;
c 85 src/side.c switch (c)
c 104 src/side.c putc (c, out);
c 113 src/side.c putc (c, out);
c 129 src/side.c putc (c, out);
c 157 src/side.c putc (c, out);
c 184 src/side.c putc (c, out);
c 103 src/system.h #define ISDIGIT(c) ((unsigned int) (c) - '0' <= 9)
c 402 src/util.c unsigned char c;
c 406 src/util.c while ((c = *p) != '\n' && isspace (c))
c 408 src/util.c if (c != '\n')
c 414 src/util.c while ((c = *p) != '\n' && isspace (c))
c 416 src/util.c if (c != '\n')
c 589 src/util.c register unsigned char c;
c 595 src/util.c switch ((c = *t++))
c 608 src/util.c putc (c, out);
c 618 src/util.c putc (c, out);
c 622 src/util.c column += isprint (c) != 0;
c 623 src/util.c putc (c, out);