c                 750 lib/getopt.c       char c = *d->__nextchar++;
c                 751 lib/getopt.c       char *temp = strchr (optstring, c);
c                 757 lib/getopt.c       if (temp == NULL || c == ':')
c                 771 lib/getopt.c   				argv[0], c);
c                 773 lib/getopt.c   		fprintf (stderr, _("%s: illegal option -- %c\n"), argv[0], c);
c                 780 lib/getopt.c   				argv[0], c);
c                 782 lib/getopt.c   		fprintf (stderr, _("%s: invalid option -- %c\n"), argv[0], c);
c                 803 lib/getopt.c   	d->optopt = c;
c                 835 lib/getopt.c   				argv[0], c) >= 0)
c                 851 lib/getopt.c   			 argv[0], c);
c                 854 lib/getopt.c   	    d->optopt = c;
c                 856 lib/getopt.c   	      c = ':';
c                 858 lib/getopt.c   	      c = '?';
c                 859 lib/getopt.c   	    return c;
c                1056 lib/getopt.c   				    argv[0], c) >= 0)
c                1073 lib/getopt.c   			     argv[0], c);
c                1076 lib/getopt.c   		d->optopt = c;
c                1078 lib/getopt.c   		  c = ':';
c                1080 lib/getopt.c   		  c = '?';
c                1089 lib/getopt.c       return c;
c                1137 lib/getopt.c     int c;
c                1144 lib/getopt.c         c = getopt (argc, argv, "abc:d:0123456789");
c                1145 lib/getopt.c         if (c == -1)
c                1148 lib/getopt.c         switch (c)
c                1163 lib/getopt.c   	  printf ("option %c\n", c);
c                1182 lib/getopt.c   	  printf ("?? getopt returned character code 0%o ??\n", c);
c                  88 lib/getopt1.c    int c;
c                 106 lib/getopt1.c        c = getopt_long (argc, argv, "abc:d:0123456789",
c                 108 lib/getopt1.c        if (c == -1)
c                 111 lib/getopt1.c        switch (c)
c                 133 lib/getopt1.c  	  printf ("option %c\n", c);
c                 156 lib/getopt1.c  	  printf ("?? getopt returned character code 0%o ??\n", c);
c                  55 src/liblzma/check/sha256.c 	h(i) += S0(a(i)) + Maj(a(i), b(i), c(i))
c                 103 src/liblzma/check/sha256.c 	state[2] += c(0);
c                  26 src/liblzma/lzma/fastpos_tablegen.c 	uint32_t c = 2;
c                  33 src/liblzma/lzma/fastpos_tablegen.c 		for (uint32_t j = 0; j < k; ++j, ++c)
c                  34 src/liblzma/lzma/fastpos_tablegen.c 			fastpos[c] = slot_fast;
c                  71 src/lzmainfo/lzmainfo.c 	int c;
c                  72 src/lzmainfo/lzmainfo.c 	while ((c = getopt_long(argc, argv, "", long_opts, NULL)) != -1) {
c                  73 src/lzmainfo/lzmainfo.c 		switch (c) {
c                 141 src/xz/args.c  	int c;
c                 143 src/xz/args.c  	while ((c = getopt_long(argc, argv, short_opts, long_opts, NULL))
c                 145 src/xz/args.c  		switch (c) {
c                 149 src/xz/args.c  			coder_set_preset(c - '0');
c                 392 src/xz/args.c  						c == OPT_FILES ? "r" : "rb");
c                  81 src/xz/main.c  		const int c = fgetc(args->files_file);
c                 103 src/xz/main.c  		if (c == args->files_delim) {
c                 116 src/xz/main.c  		if (c == '\0') {
c                 127 src/xz/main.c  		name[pos++] = c;
c                  29 src/xz/suffix.c 	return c == '/' || c == '\\' || c == ':';
c                  31 src/xz/suffix.c 	return c == '/';
c                 112 src/xzdec/xzdec.c 	int c;
c                 114 src/xzdec/xzdec.c 	while ((c = getopt_long(argc, argv, short_opts, long_opts, NULL))
c                 116 src/xzdec/xzdec.c 		switch (c) {
c                 131 tests/test_index.c 	lzma_index *c = create_big();
c                 132 tests/test_index.c 	expect(a && b && c);
c                 136 tests/test_index.c 	expect(is_equal(c, c));
c                 139 tests/test_index.c 	expect(!is_equal(a, c));
c                 140 tests/test_index.c 	expect(!is_equal(b, c));
c                 144 tests/test_index.c 	lzma_index_end(c, NULL);
c                 293 tests/test_index.c 	lzma_index *a, *b, *c;
c                 315 tests/test_index.c 	c = create_empty();
c                 317 tests/test_index.c 	expect(lzma_index_cat(b, c, NULL) == LZMA_OK);
c                 359 tests/test_index.c 	c = create_small();
c                 361 tests/test_index.c 	expect(lzma_index_cat(b, c, NULL) == LZMA_OK);
c                 401 tests/test_index.c 	c = create_big();
c                 403 tests/test_index.c 	expect(lzma_index_cat(b, c, NULL) == LZMA_OK);