c                 182 lib/charsets.c translate_character (GIConv cd, char c)
c                 186 lib/charsets.c     const char *ibuf = &c;
c                  78 lib/charsets.h convert_to_display_c (int c)
c                  80 lib/charsets.h     if (c < 0 || c >= 256)
c                  81 lib/charsets.h         return c;
c                  82 lib/charsets.h     return (int) conv_displ[c];
c                  88 lib/charsets.h convert_from_input_c (int c)
c                  90 lib/charsets.h     if (c < 0 || c >= 256)
c                  91 lib/charsets.h         return c;
c                  92 lib/charsets.h     return (int) conv_input[c];
c                 289 lib/glibcompat.c mc_g_string_append_c_len (GString *s, gchar c, guint len)
c                 298 lib/glibcompat.c         memset (s->str + s_len, (unsigned char) c, len);
c                  43 lib/glibcompat.h GString *mc_g_string_append_c_len (GString *s, gchar c, guint len);
c                 133 lib/search/glob.c         char c = *str++;
c                 135 lib/search/glob.c         switch (c)
c                 150 lib/search/glob.c                 c = ++cnt;
c                 160 lib/search/glob.c         g_string_append_c (buff, c);
c                 303 lib/search/regex.c         gunichar c = g_utf8_get_char_validated (p, -1);
c                 304 lib/search/regex.c         if (c != (gunichar) (-1) && c != (gunichar) (-2))
c                 466 lib/search/regex.c     char c = curr_str[1];
c                 470 lib/search/regex.c         if (c == '{')
c                 491 lib/search/regex.c         if (c == 'x')
c                 494 lib/search/regex.c             c = curr_str[2];
c                 495 lib/search/regex.c             if (c == '{')
c                 515 lib/search/regex.c             else if (!g_ascii_isxdigit ((guchar) c))
c                 523 lib/search/regex.c                 c = curr_str[3];
c                 524 lib/search/regex.c                 if (!g_ascii_isxdigit ((guchar) c))
c                 534 lib/search/regex.c     if (strchr ("ntvbrfa", c) != NULL)
c                 697 lib/search/regex.c     unsigned int c = 0;
c                 718 lib/search/regex.c                 c = c * 16 + from[i] - '0';
c                 720 lib/search/regex.c                 c = c * 16 + 10 + from[i] - 'a';
c                 722 lib/search/regex.c                 c = c * 16 + 10 + from[i] - 'A';
c                 729 lib/search/regex.c             c = c * 8 + from[i] - '0';
c                 735 lib/search/regex.c             c = '\n';
c                 738 lib/search/regex.c             c = '\t';
c                 741 lib/search/regex.c             c = '\v';
c                 744 lib/search/regex.c             c = '\b';
c                 747 lib/search/regex.c             c = '\r';
c                 750 lib/search/regex.c             c = '\f';
c                 753 lib/search/regex.c             c = '\a';
c                 761 lib/search/regex.c     if (c < 0x80 || !is_utf8)
c                 762 lib/search/regex.c         g_string_append_c (dest_str, (char) c);
c                 763 lib/search/regex.c     else if (c < 0x800)
c                 765 lib/search/regex.c         b = 0xC0 | (c >> 6);
c                 767 lib/search/regex.c         b = 0x80 | (c & 0x3F);
c                 770 lib/search/regex.c     else if (c < 0x10000)
c                 772 lib/search/regex.c         b = 0xE0 | (c >> 12);
c                 774 lib/search/regex.c         b = 0x80 | ((c >> 6) & 0x3F);
c                 776 lib/search/regex.c         b = 0x80 | (c & 0x3F);
c                 779 lib/search/regex.c     else if (c < 0x10FFFF)
c                 781 lib/search/regex.c         b = 0xF0 | (c >> 16);
c                 783 lib/search/regex.c         b = 0x80 | ((c >> 12) & 0x3F);
c                 785 lib/search/regex.c         b = 0x80 | ((c >> 6) & 0x3F);
c                 787 lib/search/regex.c         b = 0x80 | (c & 0x3F);
c                  93 lib/strutil/filevercmp.c     unsigned char c;
c                  98 lib/strutil/filevercmp.c     c = s[pos];
c                 100 lib/strutil/filevercmp.c     if (g_ascii_isdigit (c))
c                 102 lib/strutil/filevercmp.c     if (g_ascii_isalpha (c))
c                 103 lib/strutil/filevercmp.c         return c;
c                 104 lib/strutil/filevercmp.c     if (c == '~')
c                 109 lib/strutil/filevercmp.c     return (int) c + UCHAR_MAX + 1;
c                 927 lib/strutil/strutil.c     char c = '\0';
c                 942 lib/strutil/strutil.c             c = q[0];
c                 953 lib/strutil/strutil.c         q[0] = c;
c                  52 lib/strutil/strutil8bit.c     static inline int char_##func_name (char c) { return func_name ((int) (unsigned char) c); }
c                  52 lib/strutil/tokenize.c #define member(c, s)       ((c != '\0') ? (strchr ((s), (c)) != NULL) : FALSE)
c                 103 lib/tty/color-internal.c parse_hex_digit (char c)
c                 105 lib/tty/color-internal.c     if (c >= '0' && c <= '9')
c                 106 lib/tty/color-internal.c         return c - '0';
c                 107 lib/tty/color-internal.c     c |= 0x20;
c                 108 lib/tty/color-internal.c     if (c >= 'a' && c <= 'f')
c                 109 lib/tty/color-internal.c         return c - 'a' + 10;
c                 721 lib/tty/key.c      int c;
c                 731 lib/tty/key.c          c = get_key_code (0);
c                 732 lib/tty/key.c          if (c != -1)
c                 740 lib/tty/key.c      return c;
c                 773 lib/tty/key.c          char c;
c                 778 lib/tty/key.c          while ((c = tty_lowlevel_getch ()) != ';')
c                 780 lib/tty/key.c              if (c < '0' || c > '9')
c                 782 lib/tty/key.c              btn = 10 * btn + (c - '0');
c                 784 lib/tty/key.c          while ((c = tty_lowlevel_getch ()) != ';')
c                 786 lib/tty/key.c              if (c < '0' || c > '9')
c                 788 lib/tty/key.c              ev->x = 10 * ev->x + (c - '0');
c                 790 lib/tty/key.c          while ((c = tty_lowlevel_getch ()) != 'M' && c != 'm')
c                 792 lib/tty/key.c              if (c < '0' || c > '9')
c                 794 lib/tty/key.c              ev->y = 10 * ev->y + (c - '0');
c                 800 lib/tty/key.c          if (c == 'm')
c                1004 lib/tty/key.c  push_char (int c)
c                1013 lib/tty/key.c          *(seq_append++) = c;
c                1027 lib/tty/key.c      unsigned int c = code & ~KEY_M_MASK;   // code without modifier
c                1038 lib/tty/key.c      if (c < 32 || c >= 256)
c                1042 lib/tty/key.c      if (c == '\r')
c                1043 lib/tty/key.c          c = '\n';
c                1046 lib/tty/key.c      if (c == KEY_SCANCEL)
c                1047 lib/tty/key.c          c = '\t';
c                1050 lib/tty/key.c      if (c == KEY_BTAB)
c                1052 lib/tty/key.c          c = '\t';
c                1057 lib/tty/key.c      if (c == KEY_F (0))
c                1058 lib/tty/key.c          c = KEY_F (10);
c                1066 lib/tty/key.c      if (c == '\b')
c                1069 lib/tty/key.c          c = KEY_BACKSPACE;
c                1072 lib/tty/key.c      else if (c < 32 && c != ESC_CHAR && c != '\t' && c != '\n')
c                1078 lib/tty/key.c      if (c == 127 && mod == 0)
c                1082 lib/tty/key.c          c = KEY_BACKSPACE;
c                1085 lib/tty/key.c      if (c == '0' && mod == 0 && (qmod & KEY_M_SHIFT) == KEY_M_SHIFT)
c                1089 lib/tty/key.c          c = KEY_IC;
c                1092 lib/tty/key.c      if (c == '.' && mod == 0 && (qmod & KEY_M_SHIFT) == KEY_M_SHIFT)
c                1096 lib/tty/key.c          c = KEY_DC;
c                1101 lib/tty/key.c      if (c == 0177)
c                1102 lib/tty/key.c          c = KEY_BACKSPACE;
c                1106 lib/tty/key.c      if (c == 'd' & 31)
c                1108 lib/tty/key.c          c = KEY_DC;
c                1113 lib/tty/key.c      if (c == 'h' & 31)
c                1115 lib/tty/key.c          c = KEY_BACKSPACE;
c                1121 lib/tty/key.c      if (c == KEY_BACKSPACE && (mod & KEY_M_SHIFT) != 0)
c                1125 lib/tty/key.c      if (c >= KEY_F (1) && c <= KEY_F (10) && (mod & KEY_M_SHIFT) != 0)
c                1126 lib/tty/key.c          c += 10;
c                1129 lib/tty/key.c      if (c >= KEY_F (1) && c <= KEY_F (20))
c                1133 lib/tty/key.c          switch (c)
c                1136 lib/tty/key.c              c = '+';
c                1139 lib/tty/key.c              c = '-';
c                1142 lib/tty/key.c              c = '*';
c                1148 lib/tty/key.c      return (mod | c);
c                1157 lib/tty/key.c      int c;
c                1166 lib/tty/key.c      c = tty_lowlevel_getch ();
c                1168 lib/tty/key.c      return c;
c                1174 lib/tty/key.c  learn_store_key (GString *buffer, int c)
c                1176 lib/tty/key.c      if (c == ESC_CHAR)
c                1178 lib/tty/key.c      else if (c < ' ')
c                1181 lib/tty/key.c          g_string_append_c (buffer, c + 'a' - 1);
c                1183 lib/tty/key.c      else if (c == '^')
c                1186 lib/tty/key.c          g_string_append_c (buffer, (char) c);
c                1726 lib/tty/key.c      int c;
c                1742 lib/tty/key.c          c = *pending_keys++;
c                1743 lib/tty/key.c          while (c == ESC_CHAR)
c                1744 lib/tty/key.c              c = ALT (*pending_keys++);
c                1765 lib/tty/key.c              if (c > 127 && c < 256 && use_8th_bit_as_meta)
c                1766 lib/tty/key.c                  c = ALT (c & 0x7f);
c                1776 lib/tty/key.c      c = tty_lowlevel_getch ();
c                1778 lib/tty/key.c      if (c == KEY_RESIZE)
c                1785 lib/tty/key.c          if (c == -1)
c                1796 lib/tty/key.c      else if (c == -1)
c                1817 lib/tty/key.c          if (c > 127 && c < 256 && use_8th_bit_as_meta)
c                1819 lib/tty/key.c              c &= 0x7f;
c                1829 lib/tty/key.c          if (c == this->ch)
c                1835 lib/tty/key.c                  c = this->code;
c                1840 lib/tty/key.c              if (!push_char (c))
c                1857 lib/tty/key.c                  c = getch_with_timeout (old_esc_mode_timeout);
c                1858 lib/tty/key.c                  if (c != -1)
c                1868 lib/tty/key.c              c = tty_lowlevel_getch ();
c                1883 lib/tty/key.c              if (g_ascii_isdigit (c))
c                1884 lib/tty/key.c                  c = KEY_F (c - '0');
c                1885 lib/tty/key.c              else if (c == ' ')
c                1886 lib/tty/key.c                  c = ESC_CHAR;
c                1888 lib/tty/key.c                  c = ALT (c);
c                1895 lib/tty/key.c          push_char (c);
c                1902 lib/tty/key.c      return correct_key_code (c);
c                1914 lib/tty/key.c      int c;
c                2090 lib/tty/key.c      c = block ? getch_with_delay () : get_key_code (1);
c                2098 lib/tty/key.c          && (c == MCKEY_MOUSE
c                2100 lib/tty/key.c              || c == KEY_MOUSE
c                2102 lib/tty/key.c              || c == MCKEY_EXTENDED_MOUSE))
c                2105 lib/tty/key.c          gboolean extended = c == MCKEY_EXTENDED_MOUSE;
c                2109 lib/tty/key.c              extended || (c == KEY_MOUSE && xmouse_seq == NULL && xmouse_extended_seq != NULL);
c                2113 lib/tty/key.c          c = (event->type != 0) ? EV_MOUSE : EV_NONE;
c                2115 lib/tty/key.c      else if (c == MCKEY_BRACKETED_PASTING_START)
c                2118 lib/tty/key.c          c = EV_NONE;
c                2120 lib/tty/key.c      else if (c == MCKEY_BRACKETED_PASTING_END)
c                2123 lib/tty/key.c          c = EV_NONE;
c                2126 lib/tty/key.c      return c;
c                2154 lib/tty/key.c      int c;
c                2160 lib/tty/key.c      c = tty_lowlevel_getch ();
c                2161 lib/tty/key.c      while (c == -1)
c                2162 lib/tty/key.c          c = tty_lowlevel_getch ();  // Sanity check, should be unnecessary
c                2163 lib/tty/key.c      learn_store_key (buffer, c);
c                2170 lib/tty/key.c          while ((c = tty_lowlevel_getch ()) == -1)
c                2185 lib/tty/key.c          if (c == -1)
c                2187 lib/tty/key.c          learn_store_key (buffer, c);
c                 116 lib/tty/key.h  is_abort_char (int c)
c                 118 lib/tty/key.h      return ((c == (int) ESC_CHAR) || (c == (int) KEY_F (10)));
c                 618 lib/tty/tty-ncurses.c tty_print_char (int c)
c                 621 lib/tty/tty-ncurses.c         addch (c);
c                 628 lib/tty/tty-ncurses.c tty_print_anychar (int c)
c                 630 lib/tty/tty-ncurses.c     if (mc_global.utf8_display || c > 255)
c                 635 lib/tty/tty-ncurses.c         res = g_unichar_to_utf8 (c, (char *) str);
c                 652 lib/tty/tty-ncurses.c             if (g_unichar_iswide (c))
c                 654 lib/tty/tty-ncurses.c             else if (!g_unichar_iszerowidth (c))
c                 661 lib/tty/tty-ncurses.c             addch (c);
c                 669 lib/tty/tty-ncurses.c tty_print_alt_char (int c, gboolean single)
c                 673 lib/tty/tty-ncurses.c         if ((chtype) c == ACS_VLINE)
c                 674 lib/tty/tty-ncurses.c             c = mc_tty_frm[single ? MC_TTY_FRM_VERT : MC_TTY_FRM_DVERT];
c                 675 lib/tty/tty-ncurses.c         else if ((chtype) c == ACS_HLINE)
c                 676 lib/tty/tty-ncurses.c             c = mc_tty_frm[single ? MC_TTY_FRM_HORIZ : MC_TTY_FRM_DHORIZ];
c                 677 lib/tty/tty-ncurses.c         else if ((chtype) c == ACS_LTEE)
c                 678 lib/tty/tty-ncurses.c             c = mc_tty_frm[single ? MC_TTY_FRM_LEFTMIDDLE : MC_TTY_FRM_DLEFTMIDDLE];
c                 679 lib/tty/tty-ncurses.c         else if ((chtype) c == ACS_RTEE)
c                 680 lib/tty/tty-ncurses.c             c = mc_tty_frm[single ? MC_TTY_FRM_RIGHTMIDDLE : MC_TTY_FRM_DRIGHTMIDDLE];
c                 681 lib/tty/tty-ncurses.c         else if ((chtype) c == ACS_ULCORNER)
c                 682 lib/tty/tty-ncurses.c             c = mc_tty_frm[single ? MC_TTY_FRM_LEFTTOP : MC_TTY_FRM_DLEFTTOP];
c                 683 lib/tty/tty-ncurses.c         else if ((chtype) c == ACS_LLCORNER)
c                 684 lib/tty/tty-ncurses.c             c = mc_tty_frm[single ? MC_TTY_FRM_LEFTBOTTOM : MC_TTY_FRM_DLEFTBOTTOM];
c                 685 lib/tty/tty-ncurses.c         else if ((chtype) c == ACS_URCORNER)
c                 686 lib/tty/tty-ncurses.c             c = mc_tty_frm[single ? MC_TTY_FRM_RIGHTTOP : MC_TTY_FRM_DRIGHTTOP];
c                 687 lib/tty/tty-ncurses.c         else if ((chtype) c == ACS_LRCORNER)
c                 688 lib/tty/tty-ncurses.c             c = mc_tty_frm[single ? MC_TTY_FRM_RIGHTBOTTOM : MC_TTY_FRM_DRIGHTBOTTOM];
c                 689 lib/tty/tty-ncurses.c         else if ((chtype) c == ACS_PLUS)
c                 690 lib/tty/tty-ncurses.c             c = mc_tty_frm[MC_TTY_FRM_CROSS];
c                 692 lib/tty/tty-ncurses.c         addch (c);
c                 486 lib/tty/tty-slang.c     int c;
c                 491 lib/tty/tty-slang.c     c = SLang_getkey ();
c                 492 lib/tty/tty-slang.c     if (c == SLANG_GETKEY_ERROR)
c                 500 lib/tty/tty-slang.c     return c;
c                 654 lib/tty/tty-slang.c tty_print_char (int c)
c                 656 lib/tty/tty-slang.c     SLsmg_write_char ((SLwchar_Type) ((unsigned int) c));
c                 662 lib/tty/tty-slang.c tty_print_alt_char (int c, gboolean single)
c                 667 lib/tty/tty-slang.c     switch (c)
c                 670 lib/tty/tty-slang.c         DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_VERT : MC_TTY_FRM_DVERT]);
c                 673 lib/tty/tty-slang.c         DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_HORIZ : MC_TTY_FRM_DHORIZ]);
c                 676 lib/tty/tty-slang.c         DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_LEFTMIDDLE : MC_TTY_FRM_DLEFTMIDDLE]);
c                 679 lib/tty/tty-slang.c         DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_RIGHTMIDDLE : MC_TTY_FRM_DRIGHTMIDDLE]);
c                 682 lib/tty/tty-slang.c         DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_TOPMIDDLE : MC_TTY_FRM_DTOPMIDDLE]);
c                 685 lib/tty/tty-slang.c         DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_BOTTOMMIDDLE : MC_TTY_FRM_DBOTTOMMIDDLE]);
c                 688 lib/tty/tty-slang.c         DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_LEFTTOP : MC_TTY_FRM_DLEFTTOP]);
c                 691 lib/tty/tty-slang.c         DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_LEFTBOTTOM : MC_TTY_FRM_DLEFTBOTTOM]);
c                 694 lib/tty/tty-slang.c         DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_RIGHTTOP : MC_TTY_FRM_DRIGHTTOP]);
c                 697 lib/tty/tty-slang.c         DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_RIGHTBOTTOM : MC_TTY_FRM_DRIGHTBOTTOM]);
c                 700 lib/tty/tty-slang.c         DRAW (c, mc_tty_frm[MC_TTY_FRM_CROSS]);
c                 703 lib/tty/tty-slang.c         SLsmg_write_char ((unsigned int) c);
c                 711 lib/tty/tty-slang.c tty_print_anychar (int c)
c                 713 lib/tty/tty-slang.c     if (c > 255)
c                 718 lib/tty/tty-slang.c         res = g_unichar_to_utf8 (c, str);
c                 732 lib/tty/tty-slang.c         if (!is_printable (c))
c                 733 lib/tty/tty-slang.c             c = '.';
c                 734 lib/tty/tty-slang.c         SLsmg_write_char ((SLwchar_Type) ((unsigned int) c));
c                 116 lib/tty/tty.h  extern void tty_print_char (int c);
c                 117 lib/tty/tty.h  extern void tty_print_alt_char (int c, gboolean single);
c                 118 lib/tty/tty.h  extern void tty_print_anychar (int c);
c                  73 lib/tty/win.c      unsigned char c;
c                  75 lib/tty/win.c      while (read (0, &c, 1) != 1)
c                  77 lib/tty/win.c      if (c == '\n')
c                  79 lib/tty/win.c      r = (c - 'A') * 16;
c                  80 lib/tty/win.c      while (read (0, &c, 1) != 1)
c                  82 lib/tty/win.c      r += (c - 'A');
c                 125 lib/tty/win.c          int c;
c                 127 lib/tty/win.c          c = rxvt_getc ();
c                 128 lib/tty/win.c          if (c < 0)
c                 131 lib/tty/win.c              k[j++] = c;
c                 134 lib/tty/win.c              c = rxvt_getc ();
c                 135 lib/tty/win.c              if (c < 0)
c                 138 lib/tty/win.c                  k[j++] = c;
c                 109 lib/unixcompat.h #define IS_PATH_SEP(c)                 ((c) == PATH_SEP)
c                  85 lib/util.c     is_7bit_printable (unsigned char c)
c                  87 lib/util.c         return (c > 31 && c < 127);
c                  94 lib/util.c     is_iso_printable (unsigned char c)
c                  96 lib/util.c         return ((c > 31 && c < 127) || c >= 160);
c                 102 lib/util.c     is_8bit_printable (unsigned char c)
c                 106 lib/util.c             return is_iso_printable (c);
c                 108 lib/util.c         return (c > 31 && c != 127 && c != 155);
c                 117 lib/util.c         char *buf, *buf2, *q, *r, c;
c                 138 lib/util.c             c = *q;
c                 171 lib/util.c             *q = c;
c                 174 lib/util.c         while (c != '\0');
c                 229 lib/util.c     is_printable (int c)
c                 231 lib/util.c         c &= 0xff;
c                 236 lib/util.c         return is_8bit_printable (c);
c                 239 lib/util.c             return is_7bit_printable (c);
c                 242 lib/util.c             return is_8bit_printable (c);
c                 244 lib/util.c         return is_iso_printable (c);
c                1017 lib/util.c                     char c;
c                1019 lib/util.c                     c = *p | 0x20;
c                1020 lib/util.c                     if (c >= 'a' && c <= 'z')
c                1022 lib/util.c                         *q++ = c - 'a' + 1;
c                  48 lib/util.h     #define whitespace(c)                    ((c) == ' ' || (c) == '\t')
c                  49 lib/util.h     #define whiteness(c)                     (whitespace (c) || (c) == '\n')
c                 158 lib/util.h     int is_printable (int c);
c                 163 lib/util.h     char *name_quote (const char *c, gboolean quote_percent);
c                 166 lib/util.h     char *fake_name_quote (const char *c, gboolean quote_percent);
c                1612 lib/vfs/direntry.c     char c;
c                1639 lib/vfs/direntry.c     while (read (sock, &c, sizeof (c)) > 0)
c                1646 lib/vfs/direntry.c             ret1 = fwrite (&c, 1, 1, logfile);
c                1651 lib/vfs/direntry.c         if (c == '\n')
c                  61 lib/widget/check.c     WCheck *c = CHECK (w);
c                  66 lib/widget/check.c         if (c->text.hotkey != NULL)
c                  68 lib/widget/check.c             if (g_ascii_tolower ((gchar) c->text.hotkey[0]) == parm)
c                  80 lib/widget/check.c         c->state = !c->state;
c                  96 lib/widget/check.c         tty_print_string (c->state ? "[x] " : "[ ] ");
c                  97 lib/widget/check.c         hotkey_draw (w, c->text, focused);
c                 102 lib/widget/check.c         hotkey_free (c->text);
c                 141 lib/widget/check.c     WCheck *c;
c                 144 lib/widget/check.c     c = g_new (WCheck, 1);
c                 145 lib/widget/check.c     w = WIDGET (c);
c                 146 lib/widget/check.c     c->text = hotkey_new (text);
c                 148 lib/widget/check.c     r.cols = 4 + hotkey_width (c->text);
c                 151 lib/widget/check.c     c->state = state;
c                 153 lib/widget/check.c     return c;
c                 390 lib/widget/group.c     Widget *c = WIDGET (data);
c                 391 lib/widget/group.c     const WRect *g = &CONST_WIDGET (c->owner)->rect;
c                 393 lib/widget/group.c     WRect r = c->rect;
c                 395 lib/widget/group.c     if ((c->pos_flags & WPOS_CENTER_HORZ) != 0)
c                 396 lib/widget/group.c         r.x = g->x + (g->cols - c->rect.cols) / 2;
c                 397 lib/widget/group.c     else if ((c->pos_flags & WPOS_KEEP_LEFT) != 0 && (c->pos_flags & WPOS_KEEP_RIGHT) != 0)
c                 402 lib/widget/group.c     else if ((c->pos_flags & WPOS_KEEP_LEFT) != 0)
c                 404 lib/widget/group.c     else if ((c->pos_flags & WPOS_KEEP_RIGHT) != 0)
c                 407 lib/widget/group.c     if ((c->pos_flags & WPOS_CENTER_VERT) != 0)
c                 408 lib/widget/group.c         r.y = g->y + (g->lines - c->rect.lines) / 2;
c                 409 lib/widget/group.c     else if ((c->pos_flags & WPOS_KEEP_TOP) != 0 && (c->pos_flags & WPOS_KEEP_BOTTOM) != 0)
c                 414 lib/widget/group.c     else if ((c->pos_flags & WPOS_KEEP_TOP) != 0)
c                 416 lib/widget/group.c     else if ((c->pos_flags & WPOS_KEEP_BOTTOM) != 0)
c                 419 lib/widget/group.c     send_message (c, NULL, MSG_RESIZE, 0, &r);
c                 524 lib/widget/group.c     int c;
c                 547 lib/widget/group.c     c = key & ~ALT (0);
c                 548 lib/widget/group.c     if (key & ALT (0) && g_ascii_isalpha (c))
c                 549 lib/widget/group.c         key = g_ascii_tolower (c);
c                 106 lib/widget/input.c     char c;
c                 110 lib/widget/input.c         c = '^';
c                 112 lib/widget/input.c         c = 'v';
c                 114 lib/widget/input.c         c = '|';
c                 125 lib/widget/input.c     tty_print_char (c);
c                 900 lib/widget/input_complete.c                 char c;
c                 904 lib/widget/input_complete.c                 c = (cdpath == NULL) ? '\0' : ':';
c                 906 lib/widget/input_complete.c                 while (matches == NULL && c == ':')
c                 914 lib/widget/input_complete.c                     c = *s;
c                 924 lib/widget/input_complete.c                     *s = c;
c                  97 lib/widget/label.c             char c = '\0';
c                 102 lib/widget/label.c                 c = q[0];
c                 112 lib/widget/label.c             q[0] = c;
c                 135 lib/widget/radio.c                 int c;
c                 137 lib/widget/radio.c                 c = g_ascii_tolower ((gchar) r->texts[i].hotkey[0]);
c                 138 lib/widget/radio.c                 if (c != parm)
c                 613 lib/widget/wtools.c     int c;
c                 637 lib/widget/wtools.c     c = tty_get_event (&event, FALSE, sm->block);
c                 638 lib/widget/wtools.c     if (c == EV_NONE)
c                 644 lib/widget/wtools.c     dlg_process_event (sm->dlg, c, &event);
c                 417 src/cons.handler.c     char c;
c                 427 src/cons.handler.c             c = screen_shot.buf[line * screen_info.mv_csz + col] & 0xFF;
c                 428 src/cons.handler.c             tty_print_char (c);
c                2499 src/diffviewer/ydiff.c dview_display_file (const WDiff *dview, diff_place_t ord, int r, int c, int height, int width)
c                2534 src/diffviewer/ydiff.c         c += xwidth;
c                2558 src/diffviewer/ydiff.c             tty_gotoyx (r + j, c - 2);
c                2565 src/diffviewer/ydiff.c                 tty_gotoyx (r + j, c - xwidth);
c                2590 src/diffviewer/ydiff.c                     tty_gotoyx (r + j, c);
c                2654 src/diffviewer/ydiff.c                 tty_gotoyx (r + j, c - xwidth);
c                2664 src/diffviewer/ydiff.c         tty_gotoyx (r + j, c);
c                2715 src/diffviewer/ydiff.c             tty_gotoyx (r + j, c - xwidth);
c                2719 src/diffviewer/ydiff.c         tty_gotoyx (r + j, c);
c                2730 src/diffviewer/ydiff.c dview_status (const WDiff *dview, diff_place_t ord, int width, int c)
c                2740 src/diffviewer/ydiff.c     tty_gotoyx (0, c);
c                 154 src/editor/bookmark.c book_mark_query_color (WEdit *edit, long line, int c)
c                 164 src/editor/bookmark.c             if (p->c == c)
c                 176 src/editor/bookmark.c book_mark_insert (WEdit *edit, long line, int c)
c                 185 src/editor/bookmark.c         if (p->c != c)
c                 187 src/editor/bookmark.c             p->c = c;
c                 196 src/editor/bookmark.c     q->c = c;
c                 218 src/editor/bookmark.c book_mark_clear (WEdit *edit, long line, int c)
c                 229 src/editor/bookmark.c         if (p->line == line && (p->c == c || c == -1))
c                 252 src/editor/bookmark.c book_mark_flush (WEdit *edit, int c)
c                 265 src/editor/bookmark.c         if (q->c == c || c == -1)
c                 329 src/editor/bookmark.c             if (p->c == color && p->line >= 0)
c                  75 src/editor/edit-impl.h #define edit_query_dialog3(h, t, a, b, c) query_dialog (h, t, D_NORMAL, 3, a, b, c)
c                 148 src/editor/edit-impl.h void edit_insert (WEdit *edit, int c);
c                 151 src/editor/edit-impl.h void edit_push_undo_action (WEdit *edit, long c);
c                 152 src/editor/edit-impl.h void edit_push_redo_action (WEdit *edit, long c);
c                 154 src/editor/edit-impl.h void edit_insert_ahead (WEdit *edit, int c);
c                 218 src/editor/edit-impl.h void book_mark_insert (WEdit *edit, long line, int c);
c                 219 src/editor/edit-impl.h gboolean book_mark_query_color (WEdit *edit, long line, int c);
c                 221 src/editor/edit-impl.h gboolean book_mark_clear (WEdit *edit, long line, int c);
c                 222 src/editor/edit-impl.h void book_mark_flush (WEdit *edit, int c);
c                 229 src/editor/edit-impl.h gboolean is_break_char (char c);
c                 275 src/editor/edit.c     int c;
c                 278 src/editor/edit.c     for (i = 0; (c = fgetc (f)) >= 0; i++)
c                 279 src/editor/edit.c         edit_insert (edit, c);
c                 541 src/editor/edit.c     long c;
c                 548 src/editor/edit.c     c = edit->undo_stack[sp];
c                 549 src/editor/edit.c     if (c >= 0)
c                 553 src/editor/edit.c         return c;
c                 559 src/editor/edit.c     c = edit->undo_stack[(sp - 1) & edit->undo_stack_size_mask];
c                 568 src/editor/edit.c     return c;
c                 576 src/editor/edit.c     long c;
c                 583 src/editor/edit.c     c = edit->redo_stack[sp];
c                 584 src/editor/edit.c     if (c >= 0)
c                 587 src/editor/edit.c         return c;
c                 593 src/editor/edit.c     c = edit->redo_stack[(sp - 1) & edit->redo_stack_size_mask];
c                 599 src/editor/edit.c     return c;
c                 607 src/editor/edit.c     long c;
c                 614 src/editor/edit.c     c = edit->undo_stack[sp];
c                 615 src/editor/edit.c     if (c >= 0)
c                 616 src/editor/edit.c         return c;
c                 621 src/editor/edit.c     c = edit->undo_stack[(sp - 1) & edit->undo_stack_size_mask];
c                 622 src/editor/edit.c     return c;
c                 679 src/editor/edit.c         int c;
c                 681 src/editor/edit.c         c = edit_buffer_get_byte (buf, s);
c                 682 src/editor/edit.c         if (!isspace (c))
c                 897 src/editor/edit.c my_type_of (int c)
c                 904 src/editor/edit.c     if (c == 0)
c                 906 src/editor/edit.c     if (c == '!')
c                 909 src/editor/edit.c     if (g_ascii_isupper ((gchar) c))
c                 910 src/editor/edit.c         c = 'A';
c                 911 src/editor/edit.c     else if (g_ascii_islower ((gchar) c))
c                 912 src/editor/edit.c         c = 'a';
c                 913 src/editor/edit.c     else if (g_ascii_isalpha (c))
c                 914 src/editor/edit.c         c = 'a';
c                 915 src/editor/edit.c     else if (isdigit (c))
c                 916 src/editor/edit.c         c = '0';
c                 917 src/editor/edit.c     else if (isspace (c))
c                 918 src/editor/edit.c         c = ' ';
c                 919 src/editor/edit.c     q = strchr (chars_move_whole_word, c);
c                 933 src/editor/edit.c     while ((q = strchr (q + 1, c)) != NULL);
c                1022 src/editor/edit.c     int c;
c                1027 src/editor/edit.c         c = edit_buffer_get_utf (&edit->buffer, edit->buffer.curs1, &char_length);
c                1033 src/editor/edit.c         c = edit_buffer_get_current_byte (&edit->buffer);
c                1035 src/editor/edit.c     if (edit_options.cursor_beyond_eol && c == '\n')
c                1420 src/editor/edit.c         char c;
c                1422 src/editor/edit.c         c = edit_buffer_get_byte (&edit->buffer, p++);
c                1423 src/editor/edit.c         if (!whitespace (c))
c                1425 src/editor/edit.c         edit_insert (edit, c);
c                1500 src/editor/edit.c         int c;
c                1503 src/editor/edit.c         c = edit_buffer_get_byte (&edit->buffer, curs);
c                1504 src/editor/edit.c         if (c == '\n' || curs <= 0)
c                1509 src/editor/edit.c         if (whitespace (c))
c                1534 src/editor/edit.c     int i = 1, inc = -1, c, d, n = 0;
c                1539 src/editor/edit.c     c = edit_buffer_get_current_byte (&edit->buffer);
c                1540 src/editor/edit.c     p = strchr (b, c);
c                1547 src/editor/edit.c     if (strchr ("{[(", c) != NULL)
c                1574 src/editor/edit.c         i += (a == c) - (a == d);
c                1876 src/editor/edit.c         unsigned char c;
c                1878 src/editor/edit.c         c = edit_buffer_get_byte (&edit->buffer, i);
c                1879 src/editor/edit.c         if (!(c == '\n' || c == '\r'))
c                1882 src/editor/edit.c             if (fputc (c, f) < 0)
c                1900 src/editor/edit.c                 if (c == '\r' && c1 == '\n')
c                1904 src/editor/edit.c                 if (c == '\r' && c1 == '\r')
c                1921 src/editor/edit.c                 if (c == '\r' && c1 == '\n')
c                1933 src/editor/edit.c                 if (c == '\r' && c1 == '\n')
c                1937 src/editor/edit.c                 if (c == '\n' && c1 == '\n')
c                1961 src/editor/edit.c is_break_char (char c)
c                1963 src/editor/edit.c     return (isspace (c) || strchr ("{}[]()<>=|/\\!?~-+`'\",.;:#$%^&*", c) != NULL);
c                2357 src/editor/edit.c edit_push_undo_action (WEdit *edit, long c)
c                2384 src/editor/edit.c         edit_push_redo_action (edit, c);
c                2399 src/editor/edit.c             if (d == c && edit->undo_stack[spm1] > -1000000000)
c                2401 src/editor/edit.c                 if (c < KEY_PRESS)  // --> no need to push multiple do-nothings
c                2409 src/editor/edit.c             if (d == c)
c                2411 src/editor/edit.c                 if (c >= KEY_PRESS)
c                2418 src/editor/edit.c     edit->undo_stack[sp] = c;
c                2426 src/editor/edit.c     c = (edit->undo_stack_pointer + 2) & edit->undo_stack_size_mask;
c                2427 src/editor/edit.c     if ((unsigned long) c == edit->undo_stack_bottom
c                2428 src/editor/edit.c         || (((unsigned long) c + 1) & edit->undo_stack_size_mask) == edit->undo_stack_bottom)
c                2448 src/editor/edit.c edit_push_redo_action (WEdit *edit, long c)
c                2480 src/editor/edit.c             if (d == c && edit->redo_stack[spm1] > -1000000000)
c                2482 src/editor/edit.c                 if (c < KEY_PRESS)  // --> no need to push multiple do-nothings
c                2490 src/editor/edit.c             if (d == c)
c                2492 src/editor/edit.c                 if (c >= KEY_PRESS)
c                2499 src/editor/edit.c     edit->redo_stack[sp] = c;
c                2507 src/editor/edit.c     c = (edit->redo_stack_pointer + 2) & edit->redo_stack_size_mask;
c                2508 src/editor/edit.c     if ((unsigned long) c == edit->redo_stack_bottom
c                2509 src/editor/edit.c         || (((unsigned long) c + 1) & edit->redo_stack_size_mask) == edit->redo_stack_bottom)
c                2534 src/editor/edit.c edit_insert (WEdit *edit, int c)
c                2540 src/editor/edit.c         if (c == '\n')
c                2549 src/editor/edit.c     if (c == '\n')
c                2559 src/editor/edit.c     if (c > 32)
c                2568 src/editor/edit.c     edit_buffer_insert (&edit->buffer, c);
c                2575 src/editor/edit.c edit_insert_ahead (WEdit *edit, int c)
c                2580 src/editor/edit.c         if (c == '\n')
c                2584 src/editor/edit.c     if (c == '\n')
c                2591 src/editor/edit.c     if (c > 32)
c                2600 src/editor/edit.c     edit_buffer_insert_ahead (&edit->buffer, c);
c                2748 src/editor/edit.c             int c;
c                2752 src/editor/edit.c             c = edit_buffer_get_previous_byte (&edit->buffer);
c                2753 src/editor/edit.c             edit_buffer_insert_ahead (&edit->buffer, c);
c                2754 src/editor/edit.c             c = edit_buffer_backspace (&edit->buffer);
c                2755 src/editor/edit.c             if (c == '\n')
c                2766 src/editor/edit.c             int c;
c                2770 src/editor/edit.c             c = edit_buffer_get_current_byte (&edit->buffer);
c                2771 src/editor/edit.c             edit_buffer_insert (&edit->buffer, c);
c                2772 src/editor/edit.c             c = edit_buffer_delete (&edit->buffer);
c                2773 src/editor/edit.c             if (c == '\n')
c                2802 src/editor/edit.c         int c, orig_c;
c                2812 src/editor/edit.c         orig_c = c = edit_buffer_get_byte (&edit->buffer, p);
c                2832 src/editor/edit.c         c = convert_to_display_c (c);
c                2835 src/editor/edit.c         if (c == '\n')
c                2837 src/editor/edit.c         if (c == '\t')
c                2839 src/editor/edit.c         else if ((c < 32 || c == 127)
c                2840 src/editor/edit.c                  && (orig_c == c
c                 444 src/editor/editbuffer.c     int c;
c                 451 src/editor/editbuffer.c     c = edit_buffer_get_previous_byte (buf);
c                 453 src/editor/editbuffer.c     if (is_break_char (c))
c                 461 src/editor/editbuffer.c         last = c;
c                 462 src/editor/editbuffer.c         c = edit_buffer_get_byte (buf, buf->curs1 - i - 1);
c                 464 src/editor/editbuffer.c         if (is_break_char (c))
c                 491 src/editor/editbuffer.c edit_buffer_insert (edit_buffer_t *buf, int c)
c                 504 src/editor/editbuffer.c     *((unsigned char *) b + i) = (unsigned char) c;
c                 523 src/editor/editbuffer.c edit_buffer_insert_ahead (edit_buffer_t *buf, int c)
c                 536 src/editor/editbuffer.c     *((unsigned char *) b + EDIT_BUF_SIZE - 1 - i) = (unsigned char) c;
c                 558 src/editor/editbuffer.c     unsigned char c;
c                 566 src/editor/editbuffer.c     c = *((unsigned char *) b + EDIT_BUF_SIZE - 1 - i);
c                 582 src/editor/editbuffer.c     return c;
c                 598 src/editor/editbuffer.c     unsigned char c;
c                 606 src/editor/editbuffer.c     c = *((unsigned char *) b + i);
c                 622 src/editor/editbuffer.c     return c;
c                  53 src/editor/editbuffer.h void edit_buffer_insert (edit_buffer_t *buf, int c);
c                  54 src/editor/editbuffer.h void edit_buffer_insert_ahead (edit_buffer_t *buf, int c);
c                 464 src/editor/editcmd.c     long b, c, d;
c                 468 src/editor/editcmd.c     c = (long) edit_move_forward3 (edit, r, 0, m1);
c                 471 src/editor/editcmd.c     b = MAX (MIN (c, d), MIN (edit->column1, edit->column2));
c                 472 src/editor/editcmd.c     c = MAX (c, MAX (edit->column1, edit->column2));
c                 480 src/editor/editcmd.c         q = edit_move_forward3 (edit, r, c, 0);
c                 584 src/editor/editcmd.c             int c;
c                 589 src/editor/editcmd.c             c = edit_buffer_get_byte (&edit->buffer, start);
c                 591 src/editor/editcmd.c                 || (x >= edit->column2 && x < edit->column1) || c == '\n')
c                 593 src/editor/editcmd.c                 *s++ = c;
c                 564 src/editor/editdraw.c                     unsigned int c;
c                 566 src/editor/editdraw.c                     c = edit_buffer_get_byte (&edit->buffer, tws - 1);
c                 567 src/editor/editdraw.c                     if (!whitespace (c))
c                 574 src/editor/editdraw.c                 unsigned int c;
c                 608 src/editor/editdraw.c                     c = edit_buffer_get_utf (&edit->buffer, q, &char_length);
c                 611 src/editor/editdraw.c                     c = edit_buffer_get_byte (&edit->buffer, q);
c                 624 src/editor/editdraw.c                 switch (c)
c                 644 src/editor/editdraw.c                             c = p->style;
c                 646 src/editor/editdraw.c                             c |= book_mark << 16;
c                 648 src/editor/editdraw.c                             c = p->style | MOD_WHITESPACE;
c                 652 src/editor/editdraw.c                             p->style = c;
c                 657 src/editor/editdraw.c                                 p->style = c;
c                 661 src/editor/editdraw.c                             p->style = c;
c                 667 src/editor/editdraw.c                             p->style = c;
c                 670 src/editor/editdraw.c                             p->style = c;
c                 676 src/editor/editdraw.c                             p->style = c;
c                 685 src/editor/editdraw.c                         c = p->style & ~MOD_CURSOR;
c                 690 src/editor/editdraw.c                             p->style = c;
c                 697 src/editor/editdraw.c                         c = p->style & ~MOD_CURSOR;
c                 702 src/editor/editdraw.c                             p->style = c;
c                 726 src/editor/editdraw.c                             c = convert_from_8bit_to_utf_c ((unsigned char) c, edit->converter);
c                 727 src/editor/editdraw.c                         else if (g_unichar_iswide (c))
c                 734 src/editor/editdraw.c                         c = convert_from_utf_to_current_c (c, edit->converter);
c                 736 src/editor/editdraw.c                         c = convert_to_display_c (c);
c                 740 src/editor/editdraw.c                     if (c < 32)
c                 745 src/editor/editdraw.c                         p->ch = c + 0x40;
c                 752 src/editor/editdraw.c                     if (c == 127)
c                 770 src/editor/editdraw.c                             printable = g_unichar_isprint (c);
c                 773 src/editor/editdraw.c                             printable = is_printable (c);
c                 778 src/editor/editdraw.c                         printable = is_printable (c);
c                 781 src/editor/editdraw.c                         p->ch = c;
c                 526 src/editor/editwidget.c         int c;
c                 543 src/editor/editwidget.c             c = convert_from_input_c (x_key);
c                 545 src/editor/editwidget.c             if (is_printable (c))
c                 548 src/editor/editwidget.c                     char_for_insertion = c;
c                 594 src/editor/editwidget.c                     c = convert_from_utf_to_current (edit->charbuf);
c                 597 src/editor/editwidget.c                     char_for_insertion = c;
c                  28 src/editor/editwidget.h     int c;      // color
c                  95 src/editor/etags.c     char c = *buf;
c                  97 src/editor/etags.c     while (!(c == '\0' || c == '\n'))
c                 102 src/editor/etags.c             if (c == 0x01)
c                 104 src/editor/etags.c             else if (c == 0x7F)
c                 111 src/editor/etags.c                 g_string_append_c (longdef, c);
c                 116 src/editor/etags.c             if (isdigit (c))
c                 126 src/editor/etags.c             else if (c == 0x01)
c                 133 src/editor/etags.c                 g_string_append_c (shortdef, c);
c                 139 src/editor/etags.c             if (c == 0x01)
c                 141 src/editor/etags.c             else if (c == '\n')
c                 148 src/editor/etags.c                 g_string_append_c (shortdef, c);
c                 153 src/editor/etags.c             if (c == ',' || c == '\n')
c                 155 src/editor/etags.c             else if (isdigit (c))
c                 160 src/editor/etags.c                 g_string_append_c (linedef, c);
c                 182 src/editor/etags.c         c = *buf;
c                  96 src/editor/format.c     int c;
c                  98 src/editor/format.c     c = edit_buffer_get_byte (buf, p);
c                  99 src/editor/format.c     if (c == '.')
c                 105 src/editor/format.c     if (c == '-')
c                 113 src/editor/format.c             && strchr (edit_options.stop_format_chars, c) != NULL);
c                 309 src/editor/format.c         unsigned char c;
c                 313 src/editor/format.c         c = t[i - 1];
c                 314 src/editor/format.c         if (c == '\n')
c                 316 src/editor/format.c         if (whitespace (c))
c                 360 src/editor/format.c replace_at (WEdit *edit, off_t q, int c)
c                 364 src/editor/format.c     edit_insert_ahead (edit, c);
c                 406 src/editor/format.c     int c = '\0';
c                 416 src/editor/format.c             if (t[i - 1] == '\n' && c == '\n')
c                 432 src/editor/format.c             else if (c == '\n')
c                 445 src/editor/format.c         c = edit_buffer_get_byte (&edit->buffer, p);
c                 446 src/editor/format.c         if (c != t[i])
c                 218 src/editor/syntax.c xx_tolower (const WEdit *edit, int c)
c                 220 src/editor/syntax.c     return edit->is_case_insensitive ? tolower (c) : c;
c                 267 src/editor/syntax.c     int c, d, j;
c                 269 src/editor/syntax.c     c = edit_buffer_get_byte (&edit->buffer, i - 1);
c                 270 src/editor/syntax.c     c = xx_tolower (edit, c);
c                 271 src/editor/syntax.c     if ((line_start && c != '\n') || (whole_left != NULL && strchr (whole_left, c) != NULL))
c                 283 src/editor/syntax.c                 c = edit_buffer_get_byte (&edit->buffer, i);
c                 284 src/editor/syntax.c                 c = xx_tolower (edit, c);
c                 285 src/editor/syntax.c                 if (*p == '\0' && whole_right != NULL && strchr (whole_right, c) == NULL)
c                 287 src/editor/syntax.c                 if (c == *p)
c                 289 src/editor/syntax.c                 if (c == '\n')
c                 300 src/editor/syntax.c                 c = edit_buffer_get_byte (&edit->buffer, i);
c                 301 src/editor/syntax.c                 c = xx_tolower (edit, c);
c                 302 src/editor/syntax.c                 if (c == *p)
c                 310 src/editor/syntax.c                     && strchr ((const char *) p + 1, c)
c                 313 src/editor/syntax.c                 if (whiteness (c) || (whole_right != NULL && strchr (whole_right, c) == NULL))
c                 331 src/editor/syntax.c             c = -1;
c                 334 src/editor/syntax.c                 d = c;
c                 335 src/editor/syntax.c                 c = edit_buffer_get_byte (&edit->buffer, i);
c                 336 src/editor/syntax.c                 c = xx_tolower (edit, c);
c                 338 src/editor/syntax.c                     if (c == p[j])
c                 355 src/editor/syntax.c             c = edit_buffer_get_byte (&edit->buffer, i);
c                 356 src/editor/syntax.c             c = xx_tolower (edit, c);
c                 358 src/editor/syntax.c                 if (c == *p)
c                 366 src/editor/syntax.c             c = edit_buffer_get_byte (&edit->buffer, i);
c                 367 src/editor/syntax.c             if (*p != xx_tolower (edit, c))
c                 375 src/editor/syntax.c     c = edit_buffer_get_byte (&edit->buffer, i);
c                 376 src/editor/syntax.c     c = xx_tolower (edit, c);
c                 377 src/editor/syntax.c     return strchr (whole_right, c) != NULL ? -1 : i;
c                 397 src/editor/syntax.c     int c;
c                 405 src/editor/syntax.c     c = edit_buffer_get_byte (&edit->buffer, i);
c                 406 src/editor/syntax.c     c = xx_tolower (edit, c);
c                 407 src/editor/syntax.c     if (c == 0)
c                 430 src/editor/syntax.c         if (r->first_right == c && (edit->rule.border & RULE_ON_RIGHT_BORDER) == 0
c                 467 src/editor/syntax.c             while (*(p = xx_strchr (edit, (const unsigned char *) p + 1, c)) != '\0')
c                 522 src/editor/syntax.c                     if (r->first_right == c)
c                 549 src/editor/syntax.c                 if (r->first_left == c)
c                 581 src/editor/syntax.c         while (*(p = xx_strchr (edit, (const unsigned char *) p + 1, c)) != '\0')
c                 697 src/editor/syntax.c         int c;
c                 699 src/editor/syntax.c         c = fgetc (f);
c                 700 src/editor/syntax.c         if (c == EOF)
c                 713 src/editor/syntax.c         if (c == '\n')
c                 715 src/editor/syntax.c         if (c == '\r')
c                 717 src/editor/syntax.c             c = fgetc (f);
c                 718 src/editor/syntax.c             if (c == '\n')
c                 721 src/editor/syntax.c                 ungetc (c, f);
c                 725 src/editor/syntax.c         g_string_append_c (p, c);
c                 963 src/editor/syntax.c     context_rule_t *c = NULL;
c                1067 src/editor/syntax.c                 c = g_new0 (context_rule_t, 1);
c                1068 src/editor/syntax.c                 g_ptr_array_add (edit->rules, c);
c                1069 src/editor/syntax.c                 c->left = g_string_new (" ");
c                1070 src/editor/syntax.c                 c->right = g_string_new (" ");
c                1075 src/editor/syntax.c                 c = g_new0 (context_rule_t, 1);
c                1076 src/editor/syntax.c                 g_ptr_array_add (edit->rules, c);
c                1080 src/editor/syntax.c                     c->between_delimiters = TRUE;
c                1086 src/editor/syntax.c                     c->whole_word_chars_left = g_strdup (whole_left);
c                1087 src/editor/syntax.c                     c->whole_word_chars_right = g_strdup (whole_right);
c                1092 src/editor/syntax.c                     c->whole_word_chars_left = g_strdup (whole_left);
c                1097 src/editor/syntax.c                     c->whole_word_chars_right = g_strdup (whole_right);
c                1103 src/editor/syntax.c                     c->line_start_left = TRUE;
c                1106 src/editor/syntax.c                 c->left = g_string_new (*a++);
c                1111 src/editor/syntax.c                     c->line_start_right = TRUE;
c                1114 src/editor/syntax.c                 c->right = g_string_new (*a++);
c                1115 src/editor/syntax.c                 c->first_left = c->left->str[0];
c                1116 src/editor/syntax.c                 c->first_right = c->right->str[0];
c                1118 src/editor/syntax.c             c->keyword = g_ptr_array_new_with_free_func (syntax_keyword_free);
c                1120 src/editor/syntax.c             g_ptr_array_add (c->keyword, k);
c                1141 src/editor/syntax.c             if (c == NULL)
c                1146 src/editor/syntax.c             c->spelling = TRUE;
c                1263 src/editor/syntax.c             c = CONTEXT_RULE (g_ptr_array_index (edit->rules, i));
c                1266 src/editor/syntax.c             for (j = 1; j < c->keyword->len; j++)
c                1270 src/editor/syntax.c                 k = SYNTAX_KEYWORD (g_ptr_array_index (c->keyword, j));
c                1274 src/editor/syntax.c             c->keyword_first_chars = g_strndup (first_chars->str, first_chars->len);
c                 120 src/filemanager/cd.c             char c;
c                 135 src/filemanager/cd.c             c = *s;
c                 138 src/filemanager/cd.c             *s = c;
c                 179 src/filemanager/cd.c         char c;
c                 183 src/filemanager/cd.c         c = (p == NULL) ? '\0' : ':';
c                 185 src/filemanager/cd.c         while (!result && c == ':')
c                 192 src/filemanager/cd.c             c = *s;
c                 202 src/filemanager/cd.c             *s = c;
c                 485 src/filemanager/chattr.c         WCheck *c = CHECK (l->data);
c                 490 src/filemanager/chattr.c         check_set_text (c, btext);
c                 491 src/filemanager/chattr.c         c->state = check_attr[m].state;
c                 826 src/filemanager/filegui.c     int c;
c                 837 src/filemanager/filegui.c     c = tty_get_event (&event, FALSE, ctx->suspended);
c                 838 src/filemanager/filegui.c     if (c == EV_NONE)
c                 844 src/filemanager/filegui.c     dlg_process_event (ui->op_dlg, c, &event);
c                 973 src/filemanager/find.c     int c;
c                 976 src/filemanager/find.c     c = tty_get_event (&event, GROUP (h)->mouse_status == MOU_REPEAT, FALSE);
c                 977 src/filemanager/find.c     if (c != EV_NONE)
c                 979 src/filemanager/find.c         dlg_process_event (h, c, &event);
c                1228 src/filemanager/hotlist.c     int c;
c                1230 src/filemanager/hotlist.c     while ((c = getc (hotlist_file)) != EOF && c != '\n' && g_ascii_isspace (c))
c                1232 src/filemanager/hotlist.c     return c;
c                1240 src/filemanager/hotlist.c     int c, ret = 0;
c                1248 src/filemanager/hotlist.c     c = hot_skip_blanks ();
c                1249 src/filemanager/hotlist.c     switch (c)
c                1258 src/filemanager/hotlist.c         while ((c = getc (hotlist_file)) != EOF && c != '\n')
c                1259 src/filemanager/hotlist.c             g_string_append_c (tkn_buf, c);
c                1263 src/filemanager/hotlist.c         while ((c = getc (hotlist_file)) != EOF && c != '"')
c                1265 src/filemanager/hotlist.c             if (c == '\\')
c                1267 src/filemanager/hotlist.c                 c = getc (hotlist_file);
c                1268 src/filemanager/hotlist.c                 if (c == EOF)
c                1274 src/filemanager/hotlist.c             g_string_append_c (tkn_buf, c == '\n' ? ' ' : c);
c                1276 src/filemanager/hotlist.c         ret = (c == EOF) ? TKN_EOF : TKN_STRING;
c                1279 src/filemanager/hotlist.c         c = getc (hotlist_file);
c                1280 src/filemanager/hotlist.c         if (c == EOF)
c                1285 src/filemanager/hotlist.c         if (c == '\n')
c                1293 src/filemanager/hotlist.c             g_string_append_c (tkn_buf, g_ascii_toupper (c));
c                1295 src/filemanager/hotlist.c         while ((c = fgetc (hotlist_file)) != EOF && (g_ascii_isalnum (c) || !isascii (c)));
c                1296 src/filemanager/hotlist.c         if (c != EOF)
c                1297 src/filemanager/hotlist.c             ungetc (c, hotlist_file);
c                 206 src/help.c     move_forward2 (const char *c, int lines)
c                 211 src/help.c         currentpoint = c;
c                 220 src/help.c         return currentpoint = c;
c                 226 src/help.c     move_backward2 (const char *c, int lines)
c                 231 src/help.c         currentpoint = c;
c                 248 src/help.c         return currentpoint = c;
c                 479 src/help.c                 int c;
c                 486 src/help.c                 c = (unsigned char) buff[0];
c                 487 src/help.c                 switch (c)
c                 545 src/help.c                         help_print_word (h, word, &col, &line, c == ' ');
c                 546 src/help.c                         if (c == '\t')
c                 567 src/help.c                             if ((c == ' ') || (c == '.'))
c                 568 src/help.c                                 tty_print_char (c);
c                 571 src/help.c                                 tty_print_char (acs_map[c]);
c                 574 src/help.c                                                    WIDGET (h)->rect.x + col + 2, c);
c                 172 src/learn.c    learn_check_key (int c)
c                 178 src/learn.c            if (key_name_conv_tab[i].code != c || learnkeys[i].ok)
c                 209 src/learn.c        switch (c)
c                 229 src/learn.c        return (c < 255 && g_ascii_isalnum (c));
c                1336 src/subshell/common.c             int c;
c                1338 src/subshell/common.c             for (c = 0; c < n - su; c++)
c                1339 src/subshell/common.c                 g_string_append_printf (ret, "\\0%03o", (unsigned char) su[c]);
c                 200 src/textconf.c #define PRINTF(a, b, c)       (void) printf ("\t%-15s %s/%s\n", a, b, c)
c                 201 src/textconf.c #define PRINTF2(a, b, c)      (void) printf ("\t%-15s %s%s\n", a, b, c)
c                 772 src/usermenu.c expand_format (const Widget *edit_widget, char c, gboolean do_quote)
c                 786 src/usermenu.c     if (c == '%')
c                 800 src/usermenu.c             if (g_ascii_islower ((gchar) c))
c                 835 src/usermenu.c     c_lc = g_ascii_tolower ((gchar) c);
c                 976 src/usermenu.c     result[1] = c;
c                  22 src/usermenu.h char *expand_format (const Widget *edit_widget, char c, gboolean do_quote);
c                 237 src/vfs/extfs/extfs.c     char c = PATH_SEP;
c                 252 src/vfs/extfs/extfs.c     while ((pent != NULL) && (c != '\0') && (*p != '\0'))
c                 258 src/vfs/extfs/extfs.c         c = *q;
c                 270 src/vfs/extfs/extfs.c                 *q = c;
c                 276 src/vfs/extfs/extfs.c                 *q = c;
c                 287 src/vfs/extfs/extfs.c                 *q = c;
c                 300 src/vfs/extfs/extfs.c         *q = c;
c                 301 src/vfs/extfs/extfs.c         if (c != '\0')
c                 756 src/vfs/ftpfs/ftpfs.c                     int c;
c                 758 src/vfs/ftpfs/ftpfs.c                     while ((c = fgetc (npf)) != EOF && c != '\n')
c                1112 src/vfs/ftpfs/ftpfs.c     char *c;
c                1120 src/vfs/ftpfs/ftpfs.c     for (c = reply_str + 4; *c != '\0' && !isdigit ((unsigned char) *c); c++)
c                1123 src/vfs/ftpfs/ftpfs.c     if (*c == '\0' || !isdigit ((unsigned char) *c))
c                1127 src/vfs/ftpfs/ftpfs.c     if (sscanf (c, "%d,%d,%d,%d,%d,%d", &xa, &xb, &xc, &xd, &xe, &xf) != 6)
c                1150 src/vfs/ftpfs/ftpfs.c     char *c;
c                1157 src/vfs/ftpfs/ftpfs.c     c = strchr (reply_str, '|');
c                1158 src/vfs/ftpfs/ftpfs.c     if (c == NULL || strlen (c) <= 3)
c                1161 src/vfs/ftpfs/ftpfs.c     c += 3;
c                1162 src/vfs/ftpfs/ftpfs.c     port = atoi (c);
c                 465 src/vfs/sfs/sfs.c         char *c, *semi = NULL;
c                 471 src/vfs/sfs/sfs.c         for (c = key; *c != '\0'; c++)
c                 472 src/vfs/sfs/sfs.c             if (*c == ':' || IS_PATH_SEP (*c))
c                 474 src/vfs/sfs/sfs.c                 semi = c;
c                 475 src/vfs/sfs/sfs.c                 if (IS_PATH_SEP (*c))
c                 477 src/vfs/sfs/sfs.c                     *c = '\0';
c                 490 src/vfs/sfs/sfs.c         for (c = semi + 1; *c != '\0' && !whitespace (*c); c++)
c                 491 src/vfs/sfs/sfs.c             switch (*c)
c                 503 src/vfs/sfs/sfs.c                 fprintf (stderr, _ ("Warning: Invalid flag %c in %s:\n%s\n"), *c, "sfs.ini", key);
c                 506 src/vfs/sfs/sfs.c         if (*c == '\0')
c                 509 src/vfs/sfs/sfs.c         c++;
c                 511 src/vfs/sfs/sfs.c         semi = strchr (c, '\n');
c                 516 src/vfs/sfs/sfs.c         sfs_info[sfs_no].command = g_strdup (c);
c                 197 src/vfs/tar/tar-internal.c is_octal_digit (char c)
c                 199 src/vfs/tar/tar-internal.c     return '0' <= c && c <= '7';
c                 300 src/vfs/tar/tar-internal.h gboolean is_octal_digit (char c);
c                 203 src/viewer/ascii.c mcview_wcwidth (const WView *view, int c)
c                 208 src/viewer/ascii.c         if (g_unichar_iswide (c))
c                 210 src/viewer/ascii.c         if (g_unichar_iszerowidth (c))
c                 215 src/viewer/ascii.c     (void) c;
c                 223 src/viewer/ascii.c mcview_ismark (const WView *view, int c)
c                 227 src/viewer/ascii.c         return g_unichar_ismark (c);
c                 230 src/viewer/ascii.c     (void) c;
c                 239 src/viewer/ascii.c mcview_is_non_spacing_mark (const WView *view, int c)
c                 246 src/viewer/ascii.c         type = g_unichar_type (c);
c                 252 src/viewer/ascii.c     (void) c;
c                 261 src/viewer/ascii.c mcview_is_spacing_mark (const WView *view, int c)
c                 265 src/viewer/ascii.c         return g_unichar_type (c) == G_UNICODE_SPACING_MARK;
c                 268 src/viewer/ascii.c     (void) c;
c                 277 src/viewer/ascii.c mcview_isprint (const WView *view, int c)
c                 281 src/viewer/ascii.c         c = convert_from_8bit_to_utf_c ((unsigned char) c, view->converter);
c                 282 src/viewer/ascii.c     return g_unichar_isprint (c);
c                 286 src/viewer/ascii.c     return is_printable (c);
c                 293 src/viewer/ascii.c mcview_char_display (const WView *view, int c, char *s)
c                 299 src/viewer/ascii.c             c = convert_from_8bit_to_utf_c ((unsigned char) c, view->converter);
c                 300 src/viewer/ascii.c         if (!g_unichar_isprint (c))
c                 301 src/viewer/ascii.c             c = '.';
c                 302 src/viewer/ascii.c         return g_unichar_to_utf8 (c, s);
c                 306 src/viewer/ascii.c         if (g_unichar_iswide (c))
c                 311 src/viewer/ascii.c         if (g_unichar_iszerowidth (c))
c                 314 src/viewer/ascii.c         c = convert_from_utf_to_current_c (c, view->converter);
c                 319 src/viewer/ascii.c         c = convert_to_display_c (c);
c                 325 src/viewer/ascii.c     if (!is_printable (c))
c                 326 src/viewer/ascii.c         c = '.';
c                 327 src/viewer/ascii.c     *s = c;
c                 346 src/viewer/ascii.c mcview_get_next_char (WView *view, mcview_state_machine_t *state, int *c)
c                 357 src/viewer/ascii.c         if (!mcview_get_utf (view, state->offset, c, &char_length))
c                 367 src/viewer/ascii.c     if (!mcview_get_byte (view, state->offset, c))
c                 393 src/viewer/ascii.c mcview_get_next_maybe_nroff_char (WView *view, mcview_state_machine_t *state, int *c, int *color)
c                 402 src/viewer/ascii.c         return mcview_get_next_char (view, state, c);
c                 404 src/viewer/ascii.c     if (!mcview_get_next_char (view, state, c))
c                 407 src/viewer/ascii.c     if (!mcview_isprint (view, *c))
c                 422 src/viewer/ascii.c     if (*c == '_' && c3 == '_')
c                 429 src/viewer/ascii.c     else if (*c == c3)
c                 436 src/viewer/ascii.c     else if (*c == '_')
c                 438 src/viewer/ascii.c         *c = c3;
c                  68 src/viewer/coord_cache.c #define coord_cache_index(c, i) ((coord_cache_entry_t *) g_ptr_array_index ((c), (i)))
c                 293 src/viewer/coord_cache.c         int c;
c                 295 src/viewer/coord_cache.c         if (!mcview_get_byte (view, current.cc_offset, &c))
c                 310 src/viewer/coord_cache.c         if (c == '\r')
c                 334 src/viewer/coord_cache.c         else if (c == '\t')
c                 339 src/viewer/coord_cache.c         else if (c == '\n')
c                 368 src/viewer/coord_cache.c         if (nroff_state == NROFF_START && c != '\r')
c                 366 src/viewer/display.c     int c;
c                 372 src/viewer/display.c     for (c = 0; c < r->cols; c++)
c                 374 src/viewer/display.c         cl = view->dpy_text_column + c;
c                 377 src/viewer/display.c             widget_gotoyx (view, r->y + line_row, r->x + c);
c                 386 src/viewer/display.c                 widget_gotoyx (view, r->y + nums_row, r->x + c - 1);
c                 173 src/viewer/hex.c             int c;
c                 249 src/viewer/hex.c             if (!mcview_get_byte (view, from, &c))
c                 266 src/viewer/hex.c                 c = curr->value;
c                 283 src/viewer/hex.c                 tty_print_char (hex_char[c / 16]);
c                 288 src/viewer/hex.c                 tty_print_char (hex_char[c % 16]);
c                 332 src/viewer/hex.c                     c = convert_from_8bit_to_utf_c ((unsigned char) c, view->converter);
c                 333 src/viewer/hex.c                 if (!g_unichar_isprint (c))
c                 334 src/viewer/hex.c                     c = '.';
c                 342 src/viewer/hex.c                 c = convert_to_display_c (c);
c                 345 src/viewer/hex.c                 if (!is_printable (c))
c                 346 src/viewer/hex.c                     c = '.';
c                 358 src/viewer/hex.c                     tty_print_char (c);
c                 435 src/viewer/internal.h     int c;
c                 437 src/viewer/internal.h     while (offset >= 2 * backspaces && mcview_get_byte (view, offset - 2 * backspaces, &c)
c                 438 src/viewer/internal.h            && c == '\b')
c                 315 src/viewer/lib.c     int c;
c                 325 src/viewer/lib.c     if (!mcview_get_byte (view, current, &c))
c                 328 src/viewer/lib.c     if (c == '\n')
c                 330 src/viewer/lib.c         if (!mcview_get_byte (view, current - 1, &c))
c                 333 src/viewer/lib.c         if (c == '\r')
c                 339 src/viewer/lib.c         if (!mcview_get_byte (view, current - 1, &c))
c                 341 src/viewer/lib.c         if (c == '\r' || c == '\n')
c                 356 src/viewer/lib.c     int c;
c                 362 src/viewer/lib.c     for (; mcview_get_byte (view, current, &c); current++)
c                 364 src/viewer/lib.c         if (c == '\n')
c                 372 src/viewer/lib.c         prev_ch = c;
c                  64 src/viewer/nroff.c     int c = 0;
c                  69 src/viewer/nroff.c         if (!mcview_get_utf (nroff->view, nroff_index, &c, &nroff->char_length))
c                  73 src/viewer/nroff.c             if (!mcview_get_byte (nroff->view, nroff_index, &c) || !g_ascii_isprint (c))
c                  81 src/viewer/nroff.c         if (!mcview_get_byte (nroff->view, nroff_index, &c))
c                  85 src/viewer/nroff.c     *ret_val = c;
c                  87 src/viewer/nroff.c     return g_unichar_isprint (c);
c                  33 tests/lib/search/regex_replace_esc_seq.c #define test_helper_check_valid_data(a, b, c, d, e, f)                                             \
c                  36 tests/lib/search/regex_replace_esc_seq.c         ck_assert_msg (c == d, "skip_len(%d) != %d", c, d);                                        \
c                  39 tests/lib/strutil/str_verscmp.c static char const c[] = "B007502357019.GBP.CORP.COM";
c                  89 tests/lib/strutil/str_verscmp.c     { b, c, -1 },
c                  90 tests/lib/strutil/str_verscmp.c     { a, c, -1 },
c                  92 tests/lib/strutil/str_verscmp.c     { c, b, 1 },
c                  93 tests/lib/strutil/str_verscmp.c     { c, a, 1 },