c                 183 lib/charsets.c translate_character (GIConv cd, char c)
c                 187 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                 123 lib/global.h   #define IS_PATH_SEP(c) ((c) == PATH_SEP)
c                 130 lib/search/glob.c         char c = *str++;
c                 132 lib/search/glob.c         switch (c)
c                 147 lib/search/glob.c                 c = ++cnt;
c                 157 lib/search/glob.c         g_string_append_c (buff, c);
c                 298 lib/search/regex.c         gunichar c = g_utf8_get_char_validated (p, -1);
c                 299 lib/search/regex.c         if (c != (gunichar) (-1) && c != (gunichar) (-2))
c                 464 lib/search/regex.c     char c = curr_str[1];
c                 468 lib/search/regex.c         if (c == '{')
c                 488 lib/search/regex.c         if (c == 'x')
c                 491 lib/search/regex.c             c = curr_str[2];
c                 492 lib/search/regex.c             if (c == '{')
c                 511 lib/search/regex.c             else if (!g_ascii_isxdigit ((guchar) c))
c                 519 lib/search/regex.c                 c = curr_str[3];
c                 520 lib/search/regex.c                 if (!g_ascii_isxdigit ((guchar) c))
c                 530 lib/search/regex.c     if (strchr ("ntvbrfa", c) != NULL)
c                 694 lib/search/regex.c     unsigned int c = 0;
c                 715 lib/search/regex.c                 c = c * 16 + from[i] - '0';
c                 717 lib/search/regex.c                 c = c * 16 + 10 + from[i] - 'a';
c                 719 lib/search/regex.c                 c = c * 16 + 10 + from[i] - 'A';
c                 726 lib/search/regex.c             c = c * 8 + from[i] - '0';
c                 732 lib/search/regex.c             c = '\n';
c                 735 lib/search/regex.c             c = '\t';
c                 738 lib/search/regex.c             c = '\v';
c                 741 lib/search/regex.c             c = '\b';
c                 744 lib/search/regex.c             c = '\r';
c                 747 lib/search/regex.c             c = '\f';
c                 750 lib/search/regex.c             c = '\a';
c                 758 lib/search/regex.c     if (c < 0x80 || !is_utf8)
c                 759 lib/search/regex.c         g_string_append_c (dest_str, (char) c);
c                 760 lib/search/regex.c     else if (c < 0x800)
c                 762 lib/search/regex.c         b = 0xC0 | (c >> 6);
c                 764 lib/search/regex.c         b = 0x80 | (c & 0x3F);
c                 767 lib/search/regex.c     else if (c < 0x10000)
c                 769 lib/search/regex.c         b = 0xE0 | (c >> 12);
c                 771 lib/search/regex.c         b = 0x80 | ((c >> 6) & 0x3F);
c                 773 lib/search/regex.c         b = 0x80 | (c & 0x3F);
c                 776 lib/search/regex.c     else if (c < 0x10FFFF)
c                 778 lib/search/regex.c         b = 0xF0 | (c >> 16);
c                 780 lib/search/regex.c         b = 0x80 | ((c >> 12) & 0x3F);
c                 782 lib/search/regex.c         b = 0x80 | ((c >> 6) & 0x3F);
c                 784 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                 931 lib/strutil/strutil.c     char c = '\0';
c                 946 lib/strutil/strutil.c             c = q[0];
c                 957 lib/strutil/strutil.c         q[0] = c;
c                  52 lib/strutil/strutil8bit.c static inline int char_##func_name(char c)     \
c                  54 lib/strutil/strutil8bit.c     return func_name((int)(unsigned char)c);   \
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                 723 lib/tty/key.c      int c;
c                 733 lib/tty/key.c          c = get_key_code (0);
c                 734 lib/tty/key.c          if (c != -1)
c                 742 lib/tty/key.c      return c;
c                 775 lib/tty/key.c          char c;
c                 780 lib/tty/key.c          while ((c = tty_lowlevel_getch ()) != ';')
c                 782 lib/tty/key.c              if (c < '0' || c > '9')
c                 784 lib/tty/key.c              btn = 10 * btn + (c - '0');
c                 786 lib/tty/key.c          while ((c = tty_lowlevel_getch ()) != ';')
c                 788 lib/tty/key.c              if (c < '0' || c > '9')
c                 790 lib/tty/key.c              ev->x = 10 * ev->x + (c - '0');
c                 792 lib/tty/key.c          while ((c = tty_lowlevel_getch ()) != 'M' && c != 'm')
c                 794 lib/tty/key.c              if (c < '0' || c > '9')
c                 796 lib/tty/key.c              ev->y = 10 * ev->y + (c - '0');
c                 802 lib/tty/key.c          if (c == 'm')
c                1006 lib/tty/key.c  push_char (int c)
c                1015 lib/tty/key.c          *(seq_append++) = c;
c                1029 lib/tty/key.c      unsigned int c = code & ~KEY_M_MASK;        /* code without modifier */
c                1040 lib/tty/key.c      if (c < 32 || c >= 256)
c                1044 lib/tty/key.c      if (c == '\r')
c                1045 lib/tty/key.c          c = '\n';
c                1048 lib/tty/key.c      if (c == KEY_SCANCEL)
c                1049 lib/tty/key.c          c = '\t';
c                1052 lib/tty/key.c      if (c == KEY_BTAB)
c                1054 lib/tty/key.c          c = '\t';
c                1059 lib/tty/key.c      if (c == KEY_F (0))
c                1060 lib/tty/key.c          c = KEY_F (10);
c                1068 lib/tty/key.c      if (c == '\b')
c                1071 lib/tty/key.c          c = KEY_BACKSPACE;
c                1074 lib/tty/key.c      else if (c < 32 && c != ESC_CHAR && c != '\t' && c != '\n')
c                1080 lib/tty/key.c      if (c == 127 && mod == 0)
c                1084 lib/tty/key.c          c = KEY_BACKSPACE;
c                1087 lib/tty/key.c      if (c == '0' && mod == 0 && (qmod & KEY_M_SHIFT) == KEY_M_SHIFT)
c                1091 lib/tty/key.c          c = KEY_IC;
c                1094 lib/tty/key.c      if (c == '.' && mod == 0 && (qmod & KEY_M_SHIFT) == KEY_M_SHIFT)
c                1098 lib/tty/key.c          c = KEY_DC;
c                1103 lib/tty/key.c      if (c == 0177)
c                1104 lib/tty/key.c          c = KEY_BACKSPACE;
c                1108 lib/tty/key.c      if (c == 'd' & 31)
c                1110 lib/tty/key.c          c = KEY_DC;
c                1115 lib/tty/key.c      if (c == 'h' & 31)
c                1117 lib/tty/key.c          c = KEY_BACKSPACE;
c                1123 lib/tty/key.c      if (c == KEY_BACKSPACE && (mod & KEY_M_SHIFT) != 0)
c                1127 lib/tty/key.c      if (c >= KEY_F (1) && c <= KEY_F (10) && (mod & KEY_M_SHIFT) != 0)
c                1128 lib/tty/key.c          c += 10;
c                1131 lib/tty/key.c      if (c >= KEY_F (1) && c <= KEY_F (20))
c                1135 lib/tty/key.c          switch (c)
c                1138 lib/tty/key.c              c = '+';
c                1141 lib/tty/key.c              c = '-';
c                1144 lib/tty/key.c              c = '*';
c                1150 lib/tty/key.c      return (mod | c);
c                1159 lib/tty/key.c      int c;
c                1168 lib/tty/key.c      c = tty_lowlevel_getch ();
c                1170 lib/tty/key.c      return c;
c                1176 lib/tty/key.c  learn_store_key (GString * buffer, int c)
c                1178 lib/tty/key.c      if (c == ESC_CHAR)
c                1180 lib/tty/key.c      else if (c < ' ')
c                1183 lib/tty/key.c          g_string_append_c (buffer, c + 'a' - 1);
c                1185 lib/tty/key.c      else if (c == '^')
c                1188 lib/tty/key.c          g_string_append_c (buffer, (char) c);
c                1729 lib/tty/key.c      int c;
c                1745 lib/tty/key.c          c = *pending_keys++;
c                1746 lib/tty/key.c          while (c == ESC_CHAR)
c                1747 lib/tty/key.c              c = ALT (*pending_keys++);
c                1768 lib/tty/key.c              if (c > 127 && c < 256 && use_8th_bit_as_meta)
c                1769 lib/tty/key.c                  c = ALT (c & 0x7f);
c                1779 lib/tty/key.c      c = tty_lowlevel_getch ();
c                1781 lib/tty/key.c      if (c == KEY_RESIZE)
c                1788 lib/tty/key.c          if (c == -1)
c                1799 lib/tty/key.c      else if (c == -1)
c                1820 lib/tty/key.c          if (c > 127 && c < 256 && use_8th_bit_as_meta)
c                1822 lib/tty/key.c              c &= 0x7f;
c                1832 lib/tty/key.c          if (c == this->ch)
c                1838 lib/tty/key.c                  c = this->code;
c                1843 lib/tty/key.c              if (!push_char (c))
c                1860 lib/tty/key.c                  c = getch_with_timeout (old_esc_mode_timeout);
c                1861 lib/tty/key.c                  if (c != -1)
c                1871 lib/tty/key.c              c = tty_lowlevel_getch ();
c                1886 lib/tty/key.c              if (g_ascii_isdigit (c))
c                1887 lib/tty/key.c                  c = KEY_F (c - '0');
c                1888 lib/tty/key.c              else if (c == ' ')
c                1889 lib/tty/key.c                  c = ESC_CHAR;
c                1891 lib/tty/key.c                  c = ALT (c);
c                1898 lib/tty/key.c          push_char (c);
c                1905 lib/tty/key.c      return correct_key_code (c);
c                1917 lib/tty/key.c      int c;
c                2093 lib/tty/key.c      c = block ? getch_with_delay () : get_key_code (1);
c                2100 lib/tty/key.c      if (mouse_enabled && (c == MCKEY_MOUSE
c                2102 lib/tty/key.c                            || c == KEY_MOUSE
c                2104 lib/tty/key.c                            || c == MCKEY_EXTENDED_MOUSE))
c                2107 lib/tty/key.c          gboolean extended = c == MCKEY_EXTENDED_MOUSE;
c                2110 lib/tty/key.c          extended = extended || (c == KEY_MOUSE && xmouse_seq == NULL
c                2115 lib/tty/key.c          c = (event->type != 0) ? EV_MOUSE : EV_NONE;
c                2117 lib/tty/key.c      else if (c == MCKEY_BRACKETED_PASTING_START)
c                2120 lib/tty/key.c          c = EV_NONE;
c                2122 lib/tty/key.c      else if (c == MCKEY_BRACKETED_PASTING_END)
c                2125 lib/tty/key.c          c = EV_NONE;
c                2128 lib/tty/key.c      return c;
c                2156 lib/tty/key.c      int c;
c                2162 lib/tty/key.c      c = tty_lowlevel_getch ();
c                2163 lib/tty/key.c      while (c == -1)
c                2164 lib/tty/key.c          c = tty_lowlevel_getch ();      /* Sanity check, should be unnecessary */
c                2165 lib/tty/key.c      learn_store_key (buffer, c);
c                2172 lib/tty/key.c          while ((c = tty_lowlevel_getch ()) == -1)
c                2187 lib/tty/key.c          if (c == -1)
c                2189 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                 485 lib/tty/tty-slang.c     int c;
c                 490 lib/tty/tty-slang.c     c = SLang_getkey ();
c                 491 lib/tty/tty-slang.c     if (c == SLANG_GETKEY_ERROR)
c                 499 lib/tty/tty-slang.c     return c;
c                 653 lib/tty/tty-slang.c tty_print_char (int c)
c                 655 lib/tty/tty-slang.c     SLsmg_write_char ((SLwchar_Type) ((unsigned int) c));
c                 661 lib/tty/tty-slang.c tty_print_alt_char (int c, gboolean single)
c                 666 lib/tty/tty-slang.c     switch (c)
c                 669 lib/tty/tty-slang.c         DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_VERT : MC_TTY_FRM_DVERT]);
c                 672 lib/tty/tty-slang.c         DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_HORIZ : MC_TTY_FRM_DHORIZ]);
c                 675 lib/tty/tty-slang.c         DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_LEFTMIDDLE : MC_TTY_FRM_DLEFTMIDDLE]);
c                 678 lib/tty/tty-slang.c         DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_RIGHTMIDDLE : MC_TTY_FRM_DRIGHTMIDDLE]);
c                 681 lib/tty/tty-slang.c         DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_TOPMIDDLE : MC_TTY_FRM_DTOPMIDDLE]);
c                 684 lib/tty/tty-slang.c         DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_BOTTOMMIDDLE : MC_TTY_FRM_DBOTTOMMIDDLE]);
c                 687 lib/tty/tty-slang.c         DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_LEFTTOP : MC_TTY_FRM_DLEFTTOP]);
c                 690 lib/tty/tty-slang.c         DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_LEFTBOTTOM : MC_TTY_FRM_DLEFTBOTTOM]);
c                 693 lib/tty/tty-slang.c         DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_RIGHTTOP : MC_TTY_FRM_DRIGHTTOP]);
c                 696 lib/tty/tty-slang.c         DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_RIGHTBOTTOM : MC_TTY_FRM_DRIGHTBOTTOM]);
c                 699 lib/tty/tty-slang.c         DRAW (c, mc_tty_frm[MC_TTY_FRM_CROSS]);
c                 702 lib/tty/tty-slang.c         SLsmg_write_char ((unsigned int) c);
c                 710 lib/tty/tty-slang.c tty_print_anychar (int c)
c                 712 lib/tty/tty-slang.c     if (c > 255)
c                 717 lib/tty/tty-slang.c         res = g_unichar_to_utf8 (c, str);
c                 731 lib/tty/tty-slang.c         if (!is_printable (c))
c                 732 lib/tty/tty-slang.c             c = '.';
c                 733 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                  76 lib/tty/win.c      if (c == '\n')
c                  78 lib/tty/win.c      r = (c - 'A') * 16;
c                  79 lib/tty/win.c      while (read (0, &c, 1) != 1);
c                  80 lib/tty/win.c      r += (c - 'A');
c                 123 lib/tty/win.c          int c;
c                 125 lib/tty/win.c          c = rxvt_getc ();
c                 126 lib/tty/win.c          if (c < 0)
c                 129 lib/tty/win.c              k[j++] = c;
c                 132 lib/tty/win.c              c = rxvt_getc ();
c                 133 lib/tty/win.c              if (c < 0)
c                 136 lib/tty/win.c                  k[j++] = c;
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                1004 lib/util.c                     char c;
c                1006 lib/util.c                     c = *p | 0x20;
c                1007 lib/util.c                     if (c >= 'a' && c <= 'z')
c                1009 lib/util.c                         *q++ = c - 'a' + 1;
c                  30 lib/util.h     #define whitespace(c) ((c) == ' ' || (c) == '\t')
c                  31 lib/util.h     #define whiteness(c) (whitespace (c) || (c) == '\n')
c                 132 lib/util.h     int is_printable (int c);
c                 137 lib/util.h     char *name_quote (const char *c, gboolean quote_percent);
c                 140 lib/util.h     char *fake_name_quote (const char *c, gboolean quote_percent);
c                1620 lib/vfs/direntry.c     char c;
c                1647 lib/vfs/direntry.c     while (read (sock, &c, sizeof (c)) > 0)
c                1654 lib/vfs/direntry.c             ret1 = fwrite (&c, 1, 1, logfile);
c                1659 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                 942 lib/widget/input_complete.c                 char c;
c                 946 lib/widget/input_complete.c                 c = (cdpath == NULL) ? '\0' : ':';
c                 948 lib/widget/input_complete.c                 while (matches == NULL && c == ':')
c                 956 lib/widget/input_complete.c                     c = *s;
c                 967 lib/widget/input_complete.c                     *s = c;
c                  97 lib/widget/label.c                 char c = '\0';
c                 103 lib/widget/label.c                     c = q[0];
c                 113 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                 653 lib/widget/wtools.c     int c;
c                 677 lib/widget/wtools.c     c = tty_get_event (&event, FALSE, sm->block);
c                 678 lib/widget/wtools.c     if (c == EV_NONE)
c                 684 lib/widget/wtools.c     dlg_process_event (sm->dlg, c, &event);
c                 418 src/cons.handler.c     char c;
c                 428 src/cons.handler.c             c = screen_shot.buf[line * screen_info.mv_csz + col] & 0xFF;
c                 429 src/cons.handler.c             tty_print_char (c);
c                2511 src/diffviewer/ydiff.c dview_display_file (const WDiff * dview, diff_place_t ord, int r, int c, int height, int width)
c                2546 src/diffviewer/ydiff.c         c += xwidth;
c                2570 src/diffviewer/ydiff.c             tty_gotoyx (r + j, c - 2);
c                2577 src/diffviewer/ydiff.c                 tty_gotoyx (r + j, c - xwidth);
c                2602 src/diffviewer/ydiff.c                     tty_gotoyx (r + j, c);
c                2667 src/diffviewer/ydiff.c                 tty_gotoyx (r + j, c - xwidth);
c                2677 src/diffviewer/ydiff.c         tty_gotoyx (r + j, c);
c                2728 src/diffviewer/ydiff.c             tty_gotoyx (r + j, c - xwidth);
c                2732 src/diffviewer/ydiff.c         tty_gotoyx (r + j, c);
c                2743 src/diffviewer/ydiff.c dview_status (const WDiff * dview, diff_place_t ord, int width, int c)
c                2753 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                  79 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                 171 src/editor/edit-impl.h void edit_insert (WEdit * edit, int c);
c                 174 src/editor/edit-impl.h void edit_push_undo_action (WEdit * edit, long c);
c                 175 src/editor/edit-impl.h void edit_push_redo_action (WEdit * edit, long c);
c                 177 src/editor/edit-impl.h void edit_insert_ahead (WEdit * edit, int c);
c                 242 src/editor/edit-impl.h void book_mark_insert (WEdit * edit, long line, int c);
c                 243 src/editor/edit-impl.h gboolean book_mark_query_color (WEdit * edit, long line, int c);
c                 245 src/editor/edit-impl.h gboolean book_mark_clear (WEdit * edit, long line, int c);
c                 246 src/editor/edit-impl.h void book_mark_flush (WEdit * edit, int c);
c                 253 src/editor/edit-impl.h gboolean is_break_char (char c);
c                 288 src/editor/edit.c     int c;
c                 291 src/editor/edit.c     for (i = 0; (c = fgetc (f)) >= 0; i++)
c                 292 src/editor/edit.c         edit_insert (edit, c);
c                 555 src/editor/edit.c     long c;
c                 562 src/editor/edit.c     c = edit->undo_stack[sp];
c                 563 src/editor/edit.c     if (c >= 0)
c                 567 src/editor/edit.c         return c;
c                 573 src/editor/edit.c     c = edit->undo_stack[(sp - 1) & edit->undo_stack_size_mask];
c                 582 src/editor/edit.c     return c;
c                 590 src/editor/edit.c     long c;
c                 597 src/editor/edit.c     c = edit->redo_stack[sp];
c                 598 src/editor/edit.c     if (c >= 0)
c                 601 src/editor/edit.c         return c;
c                 607 src/editor/edit.c     c = edit->redo_stack[(sp - 1) & edit->redo_stack_size_mask];
c                 613 src/editor/edit.c     return c;
c                 621 src/editor/edit.c     long c;
c                 628 src/editor/edit.c     c = edit->undo_stack[sp];
c                 629 src/editor/edit.c     if (c >= 0)
c                 630 src/editor/edit.c         return c;
c                 635 src/editor/edit.c     c = edit->undo_stack[(sp - 1) & edit->undo_stack_size_mask];
c                 636 src/editor/edit.c     return c;
c                 693 src/editor/edit.c         int c;
c                 695 src/editor/edit.c         c = edit_buffer_get_byte (buf, s);
c                 696 src/editor/edit.c         if (!isspace (c))
c                 913 src/editor/edit.c my_type_of (int c)
c                 920 src/editor/edit.c     if (c == 0)
c                 922 src/editor/edit.c     if (c == '!')
c                 925 src/editor/edit.c     if (g_ascii_isupper ((gchar) c))
c                 926 src/editor/edit.c         c = 'A';
c                 927 src/editor/edit.c     else if (g_ascii_islower ((gchar) c))
c                 928 src/editor/edit.c         c = 'a';
c                 929 src/editor/edit.c     else if (g_ascii_isalpha (c))
c                 930 src/editor/edit.c         c = 'a';
c                 931 src/editor/edit.c     else if (isdigit (c))
c                 932 src/editor/edit.c         c = '0';
c                 933 src/editor/edit.c     else if (isspace (c))
c                 934 src/editor/edit.c         c = ' ';
c                 935 src/editor/edit.c     q = strchr (chars_move_whole_word, c);
c                 949 src/editor/edit.c     while ((q = strchr (q + 1, c)) != NULL);
c                1042 src/editor/edit.c     int c;
c                1047 src/editor/edit.c         c = edit_buffer_get_utf (&edit->buffer, edit->buffer.curs1, &char_length);
c                1053 src/editor/edit.c         c = edit_buffer_get_current_byte (&edit->buffer);
c                1055 src/editor/edit.c     if (edit_options.cursor_beyond_eol && c == '\n')
c                1443 src/editor/edit.c         char c;
c                1445 src/editor/edit.c         c = edit_buffer_get_byte (&edit->buffer, p++);
c                1446 src/editor/edit.c         if (!whitespace (c))
c                1448 src/editor/edit.c         edit_insert (edit, c);
c                1523 src/editor/edit.c         int c;
c                1526 src/editor/edit.c         c = edit_buffer_get_byte (&edit->buffer, curs);
c                1527 src/editor/edit.c         if (c == '\n' || curs <= 0)
c                1532 src/editor/edit.c         if (whitespace (c))
c                1557 src/editor/edit.c     int i = 1, inc = -1, c, d, n = 0;
c                1562 src/editor/edit.c     c = edit_buffer_get_current_byte (&edit->buffer);
c                1563 src/editor/edit.c     p = strchr (b, c);
c                1570 src/editor/edit.c     if (strchr ("{[(", c) != NULL)
c                1597 src/editor/edit.c         i += (a == c) - (a == d);
c                1899 src/editor/edit.c         unsigned char c;
c                1901 src/editor/edit.c         c = edit_buffer_get_byte (&edit->buffer, i);
c                1902 src/editor/edit.c         if (!(c == '\n' || c == '\r'))
c                1905 src/editor/edit.c             if (fputc (c, f) < 0)
c                1923 src/editor/edit.c                 if (c == '\r' && c1 == '\n')
c                1927 src/editor/edit.c                 if (c == '\r' && c1 == '\r')
c                1944 src/editor/edit.c                 if (c == '\r' && c1 == '\n')
c                1956 src/editor/edit.c                 if (c == '\r' && c1 == '\n')
c                1960 src/editor/edit.c                 if (c == '\n' && c1 == '\n')
c                1984 src/editor/edit.c is_break_char (char c)
c                1986 src/editor/edit.c     return (isspace (c) || strchr ("{}[]()<>=|/\\!?~-+`'\",.;:#$%^&*", c) != NULL);
c                2374 src/editor/edit.c edit_push_undo_action (WEdit * edit, long c)
c                2401 src/editor/edit.c         edit_push_redo_action (edit, c);
c                2417 src/editor/edit.c             if (d == c && edit->undo_stack[spm1] > -1000000000)
c                2419 src/editor/edit.c                 if (c < KEY_PRESS)      /* --> no need to push multiple do-nothings */
c                2427 src/editor/edit.c             if (d == c)
c                2429 src/editor/edit.c                 if (c >= KEY_PRESS)
c                2436 src/editor/edit.c     edit->undo_stack[sp] = c;
c                2444 src/editor/edit.c     c = (edit->undo_stack_pointer + 2) & edit->undo_stack_size_mask;
c                2445 src/editor/edit.c     if ((unsigned long) c == edit->undo_stack_bottom ||
c                2446 src/editor/edit.c         (((unsigned long) c + 1) & edit->undo_stack_size_mask) == edit->undo_stack_bottom)
c                2465 src/editor/edit.c edit_push_redo_action (WEdit * edit, long c)
c                2498 src/editor/edit.c             if (d == c && edit->redo_stack[spm1] > -1000000000)
c                2500 src/editor/edit.c                 if (c < KEY_PRESS)      /* --> no need to push multiple do-nothings */
c                2508 src/editor/edit.c             if (d == c)
c                2510 src/editor/edit.c                 if (c >= KEY_PRESS)
c                2517 src/editor/edit.c     edit->redo_stack[sp] = c;
c                2525 src/editor/edit.c     c = (edit->redo_stack_pointer + 2) & edit->redo_stack_size_mask;
c                2526 src/editor/edit.c     if ((unsigned long) c == edit->redo_stack_bottom ||
c                2527 src/editor/edit.c         (((unsigned long) c + 1) & edit->redo_stack_size_mask) == edit->redo_stack_bottom)
c                2552 src/editor/edit.c edit_insert (WEdit * edit, int c)
c                2558 src/editor/edit.c         if (c == '\n')
c                2567 src/editor/edit.c     if (c == '\n')
c                2577 src/editor/edit.c     if (c > 32)
c                2586 src/editor/edit.c     edit_buffer_insert (&edit->buffer, c);
c                2593 src/editor/edit.c edit_insert_ahead (WEdit * edit, int c)
c                2598 src/editor/edit.c         if (c == '\n')
c                2602 src/editor/edit.c     if (c == '\n')
c                2609 src/editor/edit.c     if (c > 32)
c                2618 src/editor/edit.c     edit_buffer_insert_ahead (&edit->buffer, c);
c                2766 src/editor/edit.c             int c;
c                2770 src/editor/edit.c             c = edit_buffer_get_previous_byte (&edit->buffer);
c                2771 src/editor/edit.c             edit_buffer_insert_ahead (&edit->buffer, c);
c                2772 src/editor/edit.c             c = edit_buffer_backspace (&edit->buffer);
c                2773 src/editor/edit.c             if (c == '\n')
c                2784 src/editor/edit.c             int c;
c                2788 src/editor/edit.c             c = edit_buffer_get_current_byte (&edit->buffer);
c                2789 src/editor/edit.c             edit_buffer_insert (&edit->buffer, c);
c                2790 src/editor/edit.c             c = edit_buffer_delete (&edit->buffer);
c                2791 src/editor/edit.c             if (c == '\n')
c                2820 src/editor/edit.c         int c, orig_c;
c                2830 src/editor/edit.c         orig_c = c = edit_buffer_get_byte (&edit->buffer, p);
c                2850 src/editor/edit.c         c = convert_to_display_c (c);
c                2853 src/editor/edit.c         if (c == '\n')
c                2855 src/editor/edit.c         if (c == '\t')
c                2857 src/editor/edit.c         else if ((c < 32 || c == 127) && (orig_c == c
c                 445 src/editor/editbuffer.c     int c;
c                 452 src/editor/editbuffer.c     c = edit_buffer_get_previous_byte (buf);
c                 454 src/editor/editbuffer.c     if (is_break_char (c))
c                 462 src/editor/editbuffer.c         last = c;
c                 463 src/editor/editbuffer.c         c = edit_buffer_get_byte (buf, buf->curs1 - i - 1);
c                 465 src/editor/editbuffer.c         if (is_break_char (c))
c                 492 src/editor/editbuffer.c edit_buffer_insert (edit_buffer_t * buf, int c)
c                 505 src/editor/editbuffer.c     *((unsigned char *) b + i) = (unsigned char) c;
c                 524 src/editor/editbuffer.c edit_buffer_insert_ahead (edit_buffer_t * buf, int c)
c                 537 src/editor/editbuffer.c     *((unsigned char *) b + EDIT_BUF_SIZE - 1 - i) = (unsigned char) c;
c                 559 src/editor/editbuffer.c     unsigned char c;
c                 567 src/editor/editbuffer.c     c = *((unsigned char *) b + EDIT_BUF_SIZE - 1 - i);
c                 583 src/editor/editbuffer.c     return c;
c                 599 src/editor/editbuffer.c     unsigned char c;
c                 607 src/editor/editbuffer.c     c = *((unsigned char *) b + i);
c                 623 src/editor/editbuffer.c     return c;
c                  54 src/editor/editbuffer.h void edit_buffer_insert (edit_buffer_t * buf, int c);
c                  55 src/editor/editbuffer.h void edit_buffer_insert_ahead (edit_buffer_t * buf, int c);
c                 467 src/editor/editcmd.c     long b, c, d;
c                 471 src/editor/editcmd.c     c = (long) edit_move_forward3 (edit, r, 0, m1);
c                 474 src/editor/editcmd.c     b = MAX (MIN (c, d), MIN (edit->column1, edit->column2));
c                 475 src/editor/editcmd.c     c = MAX (c, MAX (edit->column1, edit->column2));
c                 483 src/editor/editcmd.c         q = edit_move_forward3 (edit, r, c, 0);
c                 586 src/editor/editcmd.c             int c;
c                 591 src/editor/editcmd.c             c = edit_buffer_get_byte (&edit->buffer, start);
c                 593 src/editor/editcmd.c                 || (x >= edit->column2 && x < edit->column1) || c == '\n')
c                 595 src/editor/editcmd.c                 *s++ = c;
c                 563 src/editor/editdraw.c                     unsigned int c;
c                 565 src/editor/editdraw.c                     c = edit_buffer_get_byte (&edit->buffer, tws - 1);
c                 566 src/editor/editdraw.c                     if (!whitespace (c))
c                 573 src/editor/editdraw.c                 unsigned int c;
c                 606 src/editor/editdraw.c                     c = edit_buffer_get_utf (&edit->buffer, q, &char_length);
c                 609 src/editor/editdraw.c                     c = edit_buffer_get_byte (&edit->buffer, q);
c                 622 src/editor/editdraw.c                 switch (c)
c                 642 src/editor/editdraw.c                                 c = p->style;
c                 644 src/editor/editdraw.c                                 c |= book_mark << 16;
c                 646 src/editor/editdraw.c                                 c = p->style | MOD_WHITESPACE;
c                 650 src/editor/editdraw.c                                 p->style = c;
c                 655 src/editor/editdraw.c                                     p->style = c;
c                 659 src/editor/editdraw.c                                 p->style = c;
c                 665 src/editor/editdraw.c                                 p->style = c;
c                 668 src/editor/editdraw.c                                 p->style = c;
c                 674 src/editor/editdraw.c                                 p->style = c;
c                 683 src/editor/editdraw.c                             c = p->style & ~MOD_CURSOR;
c                 688 src/editor/editdraw.c                                 p->style = c;
c                 695 src/editor/editdraw.c                             c = p->style & ~MOD_CURSOR;
c                 700 src/editor/editdraw.c                                 p->style = c;
c                 724 src/editor/editdraw.c                             c = convert_from_8bit_to_utf_c ((unsigned char) c, edit->converter);
c                 725 src/editor/editdraw.c                         else if (g_unichar_iswide (c))
c                 732 src/editor/editdraw.c                         c = convert_from_utf_to_current_c (c, edit->converter);
c                 734 src/editor/editdraw.c                         c = convert_to_display_c (c);
c                 738 src/editor/editdraw.c                     if (c < 32)
c                 743 src/editor/editdraw.c                         p->ch = c + 0x40;
c                 750 src/editor/editdraw.c                     if (c == 127)
c                 765 src/editor/editdraw.c                         if (g_unichar_isprint (c))
c                 766 src/editor/editdraw.c                             p->ch = c;
c                 777 src/editor/editdraw.c                         if ((mc_global.utf8_display && g_unichar_isprint (c)) ||
c                 778 src/editor/editdraw.c                             (!mc_global.utf8_display && is_printable (c)))
c                 780 src/editor/editdraw.c                             p->ch = c;
c                 525 src/editor/editwidget.c         int c;
c                 542 src/editor/editwidget.c             c = convert_from_input_c (x_key);
c                 544 src/editor/editwidget.c             if (is_printable (c))
c                 547 src/editor/editwidget.c                     char_for_insertion = c;
c                 593 src/editor/editwidget.c                     c = convert_from_utf_to_current (edit->charbuf);
c                 596 src/editor/editwidget.c                     char_for_insertion = c;
c                  38 src/editor/editwidget.h     int c;                      /* color */
c                  97 src/editor/etags.c     char c = *buf;
c                  99 src/editor/etags.c     while (!(c == '\0' || c == '\n'))
c                 104 src/editor/etags.c             if (c == 0x01)
c                 106 src/editor/etags.c             else if (c == 0x7F)
c                 113 src/editor/etags.c                 g_string_append_c (longdef, c);
c                 118 src/editor/etags.c             if (isdigit (c))
c                 128 src/editor/etags.c             else if (c == 0x01)
c                 135 src/editor/etags.c                 g_string_append_c (shortdef, c);
c                 141 src/editor/etags.c             if (c == 0x01)
c                 143 src/editor/etags.c             else if (c == '\n')
c                 150 src/editor/etags.c                 g_string_append_c (shortdef, c);
c                 155 src/editor/etags.c             if (c == ',' || c == '\n')
c                 157 src/editor/etags.c             else if (isdigit (c))
c                 162 src/editor/etags.c                 g_string_append_c (linedef, c);
c                 184 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                 310 src/editor/format.c         unsigned char c;
c                 314 src/editor/format.c         c = t[i - 1];
c                 315 src/editor/format.c         if (c == '\n')
c                 317 src/editor/format.c         if (whitespace (c))
c                 361 src/editor/format.c replace_at (WEdit * edit, off_t q, int c)
c                 365 src/editor/format.c     edit_insert_ahead (edit, c);
c                 407 src/editor/format.c     int c = '\0';
c                 417 src/editor/format.c             if (t[i - 1] == '\n' && c == '\n')
c                 433 src/editor/format.c             else if (c == '\n')
c                 446 src/editor/format.c         c = edit_buffer_get_byte (&edit->buffer, p);
c                 447 src/editor/format.c         if (c != t[i])
c                 200 src/editor/syntax.c xx_tolower (const WEdit * edit, int c)
c                 202 src/editor/syntax.c     return edit->is_case_insensitive ? tolower (c) : c;
c                 249 src/editor/syntax.c     int c, d, j;
c                 251 src/editor/syntax.c     c = edit_buffer_get_byte (&edit->buffer, i - 1);
c                 252 src/editor/syntax.c     c = xx_tolower (edit, c);
c                 253 src/editor/syntax.c     if ((line_start && c != '\n') || (whole_left != NULL && strchr (whole_left, c) != NULL))
c                 265 src/editor/syntax.c                 c = edit_buffer_get_byte (&edit->buffer, i);
c                 266 src/editor/syntax.c                 c = xx_tolower (edit, c);
c                 267 src/editor/syntax.c                 if (*p == '\0' && whole_right != NULL && strchr (whole_right, c) == NULL)
c                 269 src/editor/syntax.c                 if (c == *p)
c                 271 src/editor/syntax.c                 if (c == '\n')
c                 282 src/editor/syntax.c                 c = edit_buffer_get_byte (&edit->buffer, i);
c                 283 src/editor/syntax.c                 c = xx_tolower (edit, c);
c                 284 src/editor/syntax.c                 if (c == *p)
c                 290 src/editor/syntax.c                 if (j != 0 && strchr ((const char *) p + 1, c) != NULL) /* c exists further down, so it will get matched later */
c                 292 src/editor/syntax.c                 if (whiteness (c) || (whole_right != NULL && strchr (whole_right, c) == NULL))
c                 310 src/editor/syntax.c             c = -1;
c                 313 src/editor/syntax.c                 d = c;
c                 314 src/editor/syntax.c                 c = edit_buffer_get_byte (&edit->buffer, i);
c                 315 src/editor/syntax.c                 c = xx_tolower (edit, c);
c                 317 src/editor/syntax.c                     if (c == p[j])
c                 334 src/editor/syntax.c             c = edit_buffer_get_byte (&edit->buffer, i);
c                 335 src/editor/syntax.c             c = xx_tolower (edit, c);
c                 337 src/editor/syntax.c                 if (c == *p)
c                 345 src/editor/syntax.c             c = edit_buffer_get_byte (&edit->buffer, i);
c                 346 src/editor/syntax.c             if (*p != xx_tolower (edit, c))
c                 354 src/editor/syntax.c     c = edit_buffer_get_byte (&edit->buffer, i);
c                 355 src/editor/syntax.c     c = xx_tolower (edit, c);
c                 356 src/editor/syntax.c     return strchr (whole_right, c) != NULL ? -1 : i;
c                 376 src/editor/syntax.c     int c;
c                 384 src/editor/syntax.c     c = edit_buffer_get_byte (&edit->buffer, i);
c                 385 src/editor/syntax.c     c = xx_tolower (edit, c);
c                 386 src/editor/syntax.c     if (c == 0)
c                 409 src/editor/syntax.c         if (r->first_right == c && (edit->rule.border & RULE_ON_RIGHT_BORDER) == 0
c                 447 src/editor/syntax.c             while (*(p = xx_strchr (edit, (const unsigned char *) p + 1, c)) != '\0')
c                 503 src/editor/syntax.c                     if (r->first_right == c)
c                 530 src/editor/syntax.c                 if (r->first_left == c)
c                 562 src/editor/syntax.c         while (*(p = xx_strchr (edit, (const unsigned char *) p + 1, c)) != '\0')
c                 678 src/editor/syntax.c         int c;
c                 680 src/editor/syntax.c         c = fgetc (f);
c                 681 src/editor/syntax.c         if (c == EOF)
c                 694 src/editor/syntax.c         if (c == '\n')
c                 696 src/editor/syntax.c         if (c == '\r')
c                 698 src/editor/syntax.c             c = fgetc (f);
c                 699 src/editor/syntax.c             if (c == '\n')
c                 702 src/editor/syntax.c                 ungetc (c, f);
c                 706 src/editor/syntax.c         g_string_append_c (p, c);
c                 944 src/editor/syntax.c     context_rule_t *c = NULL;
c                1048 src/editor/syntax.c                 c = g_new0 (context_rule_t, 1);
c                1049 src/editor/syntax.c                 g_ptr_array_add (edit->rules, c);
c                1050 src/editor/syntax.c                 c->left = g_string_new (" ");
c                1051 src/editor/syntax.c                 c->right = g_string_new (" ");
c                1056 src/editor/syntax.c                 c = g_new0 (context_rule_t, 1);
c                1057 src/editor/syntax.c                 g_ptr_array_add (edit->rules, c);
c                1061 src/editor/syntax.c                     c->between_delimiters = TRUE;
c                1067 src/editor/syntax.c                     c->whole_word_chars_left = g_strdup (whole_left);
c                1068 src/editor/syntax.c                     c->whole_word_chars_right = g_strdup (whole_right);
c                1073 src/editor/syntax.c                     c->whole_word_chars_left = g_strdup (whole_left);
c                1078 src/editor/syntax.c                     c->whole_word_chars_right = g_strdup (whole_right);
c                1084 src/editor/syntax.c                     c->line_start_left = TRUE;
c                1087 src/editor/syntax.c                 c->left = g_string_new (*a++);
c                1092 src/editor/syntax.c                     c->line_start_right = TRUE;
c                1095 src/editor/syntax.c                 c->right = g_string_new (*a++);
c                1096 src/editor/syntax.c                 c->first_left = c->left->str[0];
c                1097 src/editor/syntax.c                 c->first_right = c->right->str[0];
c                1099 src/editor/syntax.c             c->keyword = g_ptr_array_new_with_free_func (syntax_keyword_free);
c                1101 src/editor/syntax.c             g_ptr_array_add (c->keyword, k);
c                1122 src/editor/syntax.c             if (c == NULL)
c                1127 src/editor/syntax.c             c->spelling = TRUE;
c                1244 src/editor/syntax.c             c = CONTEXT_RULE (g_ptr_array_index (edit->rules, i));
c                1247 src/editor/syntax.c             for (j = 1; j < c->keyword->len; j++)
c                1251 src/editor/syntax.c                 k = SYNTAX_KEYWORD (g_ptr_array_index (c->keyword, j));
c                1255 src/editor/syntax.c             c->keyword_first_chars = g_strndup (first_chars->str, first_chars->len);
c                 122 src/filemanager/cd.c                 char c;
c                 137 src/filemanager/cd.c                 c = *s;
c                 140 src/filemanager/cd.c                 *s = c;
c                 181 src/filemanager/cd.c         char c;
c                 185 src/filemanager/cd.c         c = (p == NULL) ? '\0' : ':';
c                 187 src/filemanager/cd.c         while (!result && c == ':')
c                 194 src/filemanager/cd.c             c = *s;
c                 204 src/filemanager/cd.c             *s = c;
c                 493 src/filemanager/chattr.c         WCheck *c = CHECK (l->data);
c                 498 src/filemanager/chattr.c         check_set_text (c, btext);
c                 499 src/filemanager/chattr.c         c->state = check_attr[m].state;
c                 773 src/filemanager/filegui.c     int c;
c                 784 src/filemanager/filegui.c     c = tty_get_event (&event, FALSE, ctx->suspended);
c                 785 src/filemanager/filegui.c     if (c == EV_NONE)
c                 791 src/filemanager/filegui.c     dlg_process_event (ui->op_dlg, c, &event);
c                 974 src/filemanager/find.c     int c;
c                 977 src/filemanager/find.c     c = tty_get_event (&event, GROUP (h)->mouse_status == MOU_REPEAT, FALSE);
c                 978 src/filemanager/find.c     if (c != EV_NONE)
c                 980 src/filemanager/find.c         dlg_process_event (h, c, &event);
c                1238 src/filemanager/hotlist.c     int c;
c                1240 src/filemanager/hotlist.c     while ((c = getc (hotlist_file)) != EOF && c != '\n' && g_ascii_isspace (c))
c                1242 src/filemanager/hotlist.c     return c;
c                1250 src/filemanager/hotlist.c     int c, ret = 0;
c                1258 src/filemanager/hotlist.c     c = hot_skip_blanks ();
c                1259 src/filemanager/hotlist.c     switch (c)
c                1268 src/filemanager/hotlist.c         while ((c = getc (hotlist_file)) != EOF && c != '\n')
c                1269 src/filemanager/hotlist.c             g_string_append_c (tkn_buf, c);
c                1273 src/filemanager/hotlist.c         while ((c = getc (hotlist_file)) != EOF && c != '"')
c                1275 src/filemanager/hotlist.c             if (c == '\\')
c                1277 src/filemanager/hotlist.c                 c = getc (hotlist_file);
c                1278 src/filemanager/hotlist.c                 if (c == EOF)
c                1284 src/filemanager/hotlist.c             g_string_append_c (tkn_buf, c == '\n' ? ' ' : c);
c                1286 src/filemanager/hotlist.c         ret = (c == EOF) ? TKN_EOF : TKN_STRING;
c                1289 src/filemanager/hotlist.c         c = getc (hotlist_file);
c                1290 src/filemanager/hotlist.c         if (c == EOF)
c                1295 src/filemanager/hotlist.c         if (c == '\n')
c                1303 src/filemanager/hotlist.c             g_string_append_c (tkn_buf, g_ascii_toupper (c));
c                1305 src/filemanager/hotlist.c         while ((c = fgetc (hotlist_file)) != EOF && (g_ascii_isalnum (c) || !isascii (c)));
c                1306 src/filemanager/hotlist.c         if (c != EOF)
c                1307 src/filemanager/hotlist.c             ungetc (c, hotlist_file);
c                 208 src/help.c     move_forward2 (const char *c, int lines)
c                 213 src/help.c         currentpoint = c;
c                 222 src/help.c         return currentpoint = c;
c                 228 src/help.c     move_backward2 (const char *c, int lines)
c                 233 src/help.c         currentpoint = c;
c                 250 src/help.c         return currentpoint = c;
c                 481 src/help.c                 int c;
c                 488 src/help.c                 c = (unsigned char) buff[0];
c                 489 src/help.c                 switch (c)
c                 547 src/help.c                         help_print_word (h, word, &col, &line, c == ' ');
c                 548 src/help.c                         if (c == '\t')
c                 569 src/help.c                             if ((c == ' ') || (c == '.'))
c                 570 src/help.c                                 tty_print_char (c);
c                 573 src/help.c                                 tty_print_char (acs_map[c]);
c                 576 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                 210 src/learn.c        switch (c)
c                 230 src/learn.c        return (c < 255 && g_ascii_isalnum (c));
c                1255 src/subshell/common.c             int c;
c                1257 src/subshell/common.c             for (c = 0; c < n - su; c++)
c                1258 src/subshell/common.c                 g_string_append_printf (ret, "\\0%03o", (unsigned char) su[c]);
c                 202 src/textconf.c #define PRINTF(a, b, c) \
c                 203 src/textconf.c     (void) printf ("\t%-15s %s/%s\n", a, b, c)
c                 204 src/textconf.c #define PRINTF2(a, b, c) \
c                 205 src/textconf.c     (void) printf ("\t%-15s %s%s\n", a, b, c)
c                 761 src/usermenu.c expand_format (const Widget * edit_widget, char c, gboolean do_quote)
c                 775 src/usermenu.c     if (c == '%')
c                 787 src/usermenu.c             if (g_ascii_islower ((gchar) c))
c                 821 src/usermenu.c     c_lc = g_ascii_tolower ((gchar) c);
c                 962 src/usermenu.c     result[1] = c;
c                  22 src/usermenu.h char *expand_format (const Widget * edit_widget, char c, gboolean do_quote);
c                 232 src/vfs/extfs/extfs.c     char c = PATH_SEP;
c                 247 src/vfs/extfs/extfs.c     while ((pent != NULL) && (c != '\0') && (*p != '\0'))
c                 253 src/vfs/extfs/extfs.c         c = *q;
c                 265 src/vfs/extfs/extfs.c                 *q = c;
c                 271 src/vfs/extfs/extfs.c                 *q = c;
c                 282 src/vfs/extfs/extfs.c                 *q = c;
c                 295 src/vfs/extfs/extfs.c         *q = c;
c                 296 src/vfs/extfs/extfs.c         if (c != '\0')
c                 758 src/vfs/ftpfs/ftpfs.c                     int c;
c                 760 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                 471 src/vfs/sfs/sfs.c         char *c, *semi = NULL;
c                 477 src/vfs/sfs/sfs.c         for (c = key; *c != '\0'; c++)
c                 478 src/vfs/sfs/sfs.c             if (*c == ':' || IS_PATH_SEP (*c))
c                 480 src/vfs/sfs/sfs.c                 semi = c;
c                 481 src/vfs/sfs/sfs.c                 if (IS_PATH_SEP (*c))
c                 483 src/vfs/sfs/sfs.c                     *c = '\0';
c                 496 src/vfs/sfs/sfs.c         for (c = semi + 1; *c != '\0' && !whitespace (*c); c++)
c                 497 src/vfs/sfs/sfs.c             switch (*c)
c                 509 src/vfs/sfs/sfs.c                 fprintf (stderr, _("Warning: Invalid flag %c in %s:\n%s\n"), *c, "sfs.ini", key);
c                 512 src/vfs/sfs/sfs.c         if (*c == '\0')
c                 515 src/vfs/sfs/sfs.c         c++;
c                 517 src/vfs/sfs/sfs.c         semi = strchr (c, '\n');
c                 522 src/vfs/sfs/sfs.c         sfs_info[sfs_no].command = g_strdup (c);
c                 187 src/vfs/tar/tar-internal.c is_octal_digit (char c)
c                 189 src/vfs/tar/tar-internal.c     return '0' <= c && c <= '7';
c                 303 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                 297 src/viewer/coord_cache.c         int c;
c                 299 src/viewer/coord_cache.c         if (!mcview_get_byte (view, current.cc_offset, &c))
c                 313 src/viewer/coord_cache.c         if (c == '\r')
c                 337 src/viewer/coord_cache.c         else if (c == '\t')
c                 342 src/viewer/coord_cache.c         else if (c == '\n')
c                 371 src/viewer/coord_cache.c         if (nroff_state == NROFF_START && c != '\r')
c                 376 src/viewer/display.c     int c;
c                 382 src/viewer/display.c     for (c = 0; c < r->cols; c++)
c                 384 src/viewer/display.c         cl = view->dpy_text_column + c;
c                 387 src/viewer/display.c             widget_gotoyx (view, r->y + line_row, r->x + c);
c                 396 src/viewer/display.c                 widget_gotoyx (view, r->y + nums_row, r->x + c - 1);
c                 171 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                 281 src/viewer/hex.c                 tty_print_char (hex_char[c / 16]);
c                 286 src/viewer/hex.c                 tty_print_char (hex_char[c % 16]);
c                 330 src/viewer/hex.c                     c = convert_from_8bit_to_utf_c ((unsigned char) c, view->converter);
c                 332 src/viewer/hex.c                 if (!g_unichar_isprint (c))
c                 333 src/viewer/hex.c                     c = '.';
c                 341 src/viewer/hex.c                 c = convert_to_display_c (c);
c                 344 src/viewer/hex.c                 if (!is_printable (c))
c                 345 src/viewer/hex.c                     c = '.';
c                 357 src/viewer/hex.c                     tty_print_char (c);
c                 432 src/viewer/internal.h     int c;
c                 434 src/viewer/internal.h     while (offset >= 2 * backspaces && mcview_get_byte (view, offset - 2 * backspaces, &c)
c                 435 src/viewer/internal.h            && c == '\b')
c                 316 src/viewer/lib.c     int c;
c                 323 src/viewer/lib.c     if (!mcview_get_byte (view, current, &c))
c                 325 src/viewer/lib.c     if (c == '\n')
c                 327 src/viewer/lib.c         if (!mcview_get_byte (view, current - 1, &c))
c                 329 src/viewer/lib.c         if (c == '\r')
c                 334 src/viewer/lib.c         if (!mcview_get_byte (view, current - 1, &c))
c                 336 src/viewer/lib.c         if (c == '\r' || c == '\n')
c                 351 src/viewer/lib.c     int c, prev_ch = 0;
c                 358 src/viewer/lib.c         if (!mcview_get_byte (view, current, &c))
c                 360 src/viewer/lib.c         if (c == '\n')
c                 370 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                  91 tests/lib/strutil/str_verscmp.c     { b, c, -1 },
c                  92 tests/lib/strutil/str_verscmp.c     { a, c, -1 },
c                  94 tests/lib/strutil/str_verscmp.c     { c, b, 1 },
c                  95 tests/lib/strutil/str_verscmp.c     { c, a, 1 }