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 302 lib/search/regex.c gunichar c = g_utf8_get_char_validated (p, -1); c 303 lib/search/regex.c if (c != (gunichar) (-1) && c != (gunichar) (-2)) c 443 lib/search/regex.c char c = curr_str[1]; c 447 lib/search/regex.c if (c == '{') c 468 lib/search/regex.c if (c == 'x') c 471 lib/search/regex.c c = curr_str[2]; c 472 lib/search/regex.c if (c == '{') c 492 lib/search/regex.c else if (!g_ascii_isxdigit ((guchar) c)) c 500 lib/search/regex.c c = curr_str[3]; c 501 lib/search/regex.c if (!g_ascii_isxdigit ((guchar) c)) c 511 lib/search/regex.c if (strchr ("ntvbrfa", c) != NULL) c 674 lib/search/regex.c unsigned int c = 0; c 695 lib/search/regex.c c = c * 16 + from[i] - '0'; c 697 lib/search/regex.c c = c * 16 + 10 + from[i] - 'a'; c 699 lib/search/regex.c c = c * 16 + 10 + from[i] - 'A'; c 706 lib/search/regex.c c = c * 8 + from[i] - '0'; c 712 lib/search/regex.c c = '\n'; c 715 lib/search/regex.c c = '\t'; c 718 lib/search/regex.c c = '\v'; c 721 lib/search/regex.c c = '\b'; c 724 lib/search/regex.c c = '\r'; c 727 lib/search/regex.c c = '\f'; c 730 lib/search/regex.c c = '\a'; c 738 lib/search/regex.c if (c < 0x80 || !is_utf8) c 739 lib/search/regex.c g_string_append_c (dest_str, (char) c); c 740 lib/search/regex.c else if (c < 0x800) c 742 lib/search/regex.c b = 0xC0 | (c >> 6); c 744 lib/search/regex.c b = 0x80 | (c & 0x3F); c 747 lib/search/regex.c else if (c < 0x10000) c 749 lib/search/regex.c b = 0xE0 | (c >> 12); c 751 lib/search/regex.c b = 0x80 | ((c >> 6) & 0x3F); c 753 lib/search/regex.c b = 0x80 | (c & 0x3F); c 756 lib/search/regex.c else if (c < 0x10FFFF) c 758 lib/search/regex.c b = 0xF0 | (c >> 16); c 760 lib/search/regex.c b = 0x80 | ((c >> 12) & 0x3F); c 762 lib/search/regex.c b = 0x80 | ((c >> 6) & 0x3F); c 764 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 84 lib/terminal.c char c = *s; c 91 lib/terminal.c c = *s; \ c 97 lib/terminal.c if (c >= '<' && c <= '?') // "<=>?" c 99 lib/terminal.c private_mode = c; c 108 lib/terminal.c while (c >= 0x30 && c <= 0x3F) c 121 lib/terminal.c while (c >= 0x30 && c <= 0x3F) c 123 lib/terminal.c if (c >= '0' && c <= '9') c 130 lib/terminal.c if (tmp + c - '0' < tmp) c 132 lib/terminal.c tmp += c - '0'; c 136 lib/terminal.c else if (c == ':' && ++sub_index < G_N_ELEMENTS (out->params[0])) c 138 lib/terminal.c else if (c == ';' && ++param_count <= G_N_ELEMENTS (out->params)) c 146 lib/terminal.c while (c >= 0x20 && c <= 0x2F) // intermediate bytes c 150 lib/terminal.c if (c < 0x40 || c > 0x7E) // final byte c 297 lib/terminal.c char c; c 299 lib/terminal.c c = *p | 0x20; c 300 lib/terminal.c if (c >= 'a' && c <= 'z') c 302 lib/terminal.c *q++ = c - 'a' + 1; 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 614 lib/tty/tty-ncurses.c tty_print_char (int c) c 617 lib/tty/tty-ncurses.c addch (c); c 624 lib/tty/tty-ncurses.c tty_print_anychar (int c) c 626 lib/tty/tty-ncurses.c if (mc_global.utf8_display || c > 255) c 631 lib/tty/tty-ncurses.c res = g_unichar_to_utf8 (c, (char *) str); c 648 lib/tty/tty-ncurses.c if (g_unichar_iswide (c)) c 650 lib/tty/tty-ncurses.c else if (!g_unichar_iszerowidth (c)) c 657 lib/tty/tty-ncurses.c addch (c); c 665 lib/tty/tty-ncurses.c tty_print_alt_char (int c, gboolean single) c 669 lib/tty/tty-ncurses.c if ((chtype) c == ACS_VLINE) c 670 lib/tty/tty-ncurses.c c = mc_tty_frm[single ? MC_TTY_FRM_VERT : MC_TTY_FRM_DVERT]; c 671 lib/tty/tty-ncurses.c else if ((chtype) c == ACS_HLINE) c 672 lib/tty/tty-ncurses.c c = mc_tty_frm[single ? MC_TTY_FRM_HORIZ : MC_TTY_FRM_DHORIZ]; c 673 lib/tty/tty-ncurses.c else if ((chtype) c == ACS_LTEE) c 674 lib/tty/tty-ncurses.c c = mc_tty_frm[single ? MC_TTY_FRM_LEFTMIDDLE : MC_TTY_FRM_DLEFTMIDDLE]; c 675 lib/tty/tty-ncurses.c else if ((chtype) c == ACS_RTEE) c 676 lib/tty/tty-ncurses.c c = mc_tty_frm[single ? MC_TTY_FRM_RIGHTMIDDLE : MC_TTY_FRM_DRIGHTMIDDLE]; c 677 lib/tty/tty-ncurses.c else if ((chtype) c == ACS_ULCORNER) c 678 lib/tty/tty-ncurses.c c = mc_tty_frm[single ? MC_TTY_FRM_LEFTTOP : MC_TTY_FRM_DLEFTTOP]; c 679 lib/tty/tty-ncurses.c else if ((chtype) c == ACS_LLCORNER) c 680 lib/tty/tty-ncurses.c c = mc_tty_frm[single ? MC_TTY_FRM_LEFTBOTTOM : MC_TTY_FRM_DLEFTBOTTOM]; c 681 lib/tty/tty-ncurses.c else if ((chtype) c == ACS_URCORNER) c 682 lib/tty/tty-ncurses.c c = mc_tty_frm[single ? MC_TTY_FRM_RIGHTTOP : MC_TTY_FRM_DRIGHTTOP]; c 683 lib/tty/tty-ncurses.c else if ((chtype) c == ACS_LRCORNER) c 684 lib/tty/tty-ncurses.c c = mc_tty_frm[single ? MC_TTY_FRM_RIGHTBOTTOM : MC_TTY_FRM_DRIGHTBOTTOM]; c 685 lib/tty/tty-ncurses.c else if ((chtype) c == ACS_PLUS) c 686 lib/tty/tty-ncurses.c c = mc_tty_frm[MC_TTY_FRM_CROSS]; c 688 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 84 lib/util.c is_iso_printable (unsigned char c) c 86 lib/util.c return ((c > 31 && c < 127) || c >= 160); c 92 lib/util.c is_8bit_printable (unsigned char c) c 96 lib/util.c return is_iso_printable (c); c 98 lib/util.c return (c > 31 && c != 127 && c != 155); c 107 lib/util.c char *buf, *buf2, *q, *r, c; c 128 lib/util.c c = *q; c 161 lib/util.c *q = c; c 164 lib/util.c while (c != '\0'); c 219 lib/util.c is_printable (int c) c 223 lib/util.c return is_8bit_printable (c & 0xff); 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 2483 src/diffviewer/ydiff.c dview_display_file (const WDiff *dview, diff_place_t ord, int r, int c, int height, int width) c 2518 src/diffviewer/ydiff.c c += xwidth; c 2542 src/diffviewer/ydiff.c tty_gotoyx (r + j, c - 2); c 2549 src/diffviewer/ydiff.c tty_gotoyx (r + j, c - xwidth); c 2572 src/diffviewer/ydiff.c tty_gotoyx (r + j, c); c 2631 src/diffviewer/ydiff.c tty_gotoyx (r + j, c - xwidth); c 2641 src/diffviewer/ydiff.c tty_gotoyx (r + j, c); c 2688 src/diffviewer/ydiff.c tty_gotoyx (r + j, c - xwidth); c 2692 src/diffviewer/ydiff.c tty_gotoyx (r + j, c); c 2703 src/diffviewer/ydiff.c dview_status (const WDiff *dview, diff_place_t ord, int width, int c) c 2713 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 272 src/editor/edit.c int c; c 275 src/editor/edit.c for (i = 0; (c = fgetc (f)) >= 0; i++) c 276 src/editor/edit.c edit_insert (edit, c); c 538 src/editor/edit.c long c; c 545 src/editor/edit.c c = edit->undo_stack[sp]; c 546 src/editor/edit.c if (c >= 0) c 550 src/editor/edit.c return c; c 556 src/editor/edit.c c = edit->undo_stack[(sp - 1) & edit->undo_stack_size_mask]; c 565 src/editor/edit.c return c; c 573 src/editor/edit.c long c; c 580 src/editor/edit.c c = edit->redo_stack[sp]; c 581 src/editor/edit.c if (c >= 0) c 584 src/editor/edit.c return c; c 590 src/editor/edit.c c = edit->redo_stack[(sp - 1) & edit->redo_stack_size_mask]; c 596 src/editor/edit.c return c; c 604 src/editor/edit.c long c; c 611 src/editor/edit.c c = edit->undo_stack[sp]; c 612 src/editor/edit.c if (c >= 0) c 613 src/editor/edit.c return c; c 618 src/editor/edit.c c = edit->undo_stack[(sp - 1) & edit->undo_stack_size_mask]; c 619 src/editor/edit.c return c; c 676 src/editor/edit.c int c; c 678 src/editor/edit.c c = edit_buffer_get_byte (buf, s); c 679 src/editor/edit.c if (!isspace (c)) c 894 src/editor/edit.c my_type_of (int c) c 901 src/editor/edit.c if (c == 0) c 903 src/editor/edit.c if (c == '!') c 906 src/editor/edit.c if (g_ascii_isupper ((gchar) c)) c 907 src/editor/edit.c c = 'A'; c 908 src/editor/edit.c else if (g_ascii_islower ((gchar) c)) c 909 src/editor/edit.c c = 'a'; c 910 src/editor/edit.c else if (g_ascii_isalpha (c)) c 911 src/editor/edit.c c = 'a'; c 912 src/editor/edit.c else if (isdigit (c)) c 913 src/editor/edit.c c = '0'; c 914 src/editor/edit.c else if (isspace (c)) c 915 src/editor/edit.c c = ' '; c 916 src/editor/edit.c q = strchr (chars_move_whole_word, c); c 930 src/editor/edit.c while ((q = strchr (q + 1, c)) != NULL); c 1019 src/editor/edit.c int c; c 1023 src/editor/edit.c c = edit_buffer_get_utf (&edit->buffer, edit->buffer.curs1, &char_length); c 1028 src/editor/edit.c c = edit_buffer_get_current_byte (&edit->buffer); c 1030 src/editor/edit.c if (edit_options.cursor_beyond_eol && c == '\n') c 1412 src/editor/edit.c char c; c 1414 src/editor/edit.c c = edit_buffer_get_byte (&edit->buffer, p++); c 1415 src/editor/edit.c if (!whitespace (c)) c 1417 src/editor/edit.c edit_insert (edit, c); c 1492 src/editor/edit.c int c; c 1495 src/editor/edit.c c = edit_buffer_get_byte (&edit->buffer, curs); c 1496 src/editor/edit.c if (c == '\n' || curs <= 0) c 1501 src/editor/edit.c if (whitespace (c)) c 1526 src/editor/edit.c int i = 1, inc = -1, c, d, n = 0; c 1531 src/editor/edit.c c = edit_buffer_get_current_byte (&edit->buffer); c 1532 src/editor/edit.c p = strchr (b, c); c 1539 src/editor/edit.c if (strchr ("{[(", c) != NULL) c 1566 src/editor/edit.c i += (a == c) - (a == d); c 1868 src/editor/edit.c unsigned char c; c 1870 src/editor/edit.c c = edit_buffer_get_byte (&edit->buffer, i); c 1871 src/editor/edit.c if (!(c == '\n' || c == '\r')) c 1874 src/editor/edit.c if (fputc (c, f) < 0) c 1892 src/editor/edit.c if (c == '\r' && c1 == '\n') c 1896 src/editor/edit.c if (c == '\r' && c1 == '\r') c 1913 src/editor/edit.c if (c == '\r' && c1 == '\n') c 1925 src/editor/edit.c if (c == '\r' && c1 == '\n') c 1929 src/editor/edit.c if (c == '\n' && c1 == '\n') c 1953 src/editor/edit.c is_break_char (char c) c 1955 src/editor/edit.c return (isspace (c) || strchr ("{}[]()<>=|/\\!?~-+`'\",.;:#$%^&*", c) != NULL); c 2343 src/editor/edit.c edit_push_undo_action (WEdit *edit, long c) c 2370 src/editor/edit.c edit_push_redo_action (edit, c); c 2385 src/editor/edit.c if (d == c && edit->undo_stack[spm1] > -1000000000) c 2387 src/editor/edit.c if (c < KEY_PRESS) // --> no need to push multiple do-nothings c 2395 src/editor/edit.c if (d == c) c 2397 src/editor/edit.c if (c >= KEY_PRESS) c 2404 src/editor/edit.c edit->undo_stack[sp] = c; c 2412 src/editor/edit.c c = (edit->undo_stack_pointer + 2) & edit->undo_stack_size_mask; c 2413 src/editor/edit.c if ((unsigned long) c == edit->undo_stack_bottom c 2414 src/editor/edit.c || (((unsigned long) c + 1) & edit->undo_stack_size_mask) == edit->undo_stack_bottom) c 2434 src/editor/edit.c edit_push_redo_action (WEdit *edit, long c) c 2466 src/editor/edit.c if (d == c && edit->redo_stack[spm1] > -1000000000) c 2468 src/editor/edit.c if (c < KEY_PRESS) // --> no need to push multiple do-nothings c 2476 src/editor/edit.c if (d == c) c 2478 src/editor/edit.c if (c >= KEY_PRESS) c 2485 src/editor/edit.c edit->redo_stack[sp] = c; c 2493 src/editor/edit.c c = (edit->redo_stack_pointer + 2) & edit->redo_stack_size_mask; c 2494 src/editor/edit.c if ((unsigned long) c == edit->redo_stack_bottom c 2495 src/editor/edit.c || (((unsigned long) c + 1) & edit->redo_stack_size_mask) == edit->redo_stack_bottom) c 2520 src/editor/edit.c edit_insert (WEdit *edit, int c) c 2526 src/editor/edit.c if (c == '\n') c 2535 src/editor/edit.c if (c == '\n') c 2545 src/editor/edit.c if (c > 32) c 2554 src/editor/edit.c edit_buffer_insert (&edit->buffer, c); c 2561 src/editor/edit.c edit_insert_ahead (WEdit *edit, int c) c 2566 src/editor/edit.c if (c == '\n') c 2570 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_ahead (&edit->buffer, c); c 2726 src/editor/edit.c int c; c 2730 src/editor/edit.c c = edit_buffer_get_previous_byte (&edit->buffer); c 2731 src/editor/edit.c edit_buffer_insert_ahead (&edit->buffer, c); c 2732 src/editor/edit.c c = edit_buffer_backspace (&edit->buffer); c 2733 src/editor/edit.c if (c == '\n') c 2744 src/editor/edit.c int c; c 2748 src/editor/edit.c c = edit_buffer_get_current_byte (&edit->buffer); c 2749 src/editor/edit.c edit_buffer_insert (&edit->buffer, c); c 2750 src/editor/edit.c c = edit_buffer_delete (&edit->buffer); c 2751 src/editor/edit.c if (c == '\n') c 2780 src/editor/edit.c int c, orig_c; c 2790 src/editor/edit.c orig_c = c = edit_buffer_get_byte (&edit->buffer, p); c 2809 src/editor/edit.c c = convert_to_display_c (c); c 2811 src/editor/edit.c if (c == '\n') c 2813 src/editor/edit.c if (c == '\t') c 2815 src/editor/edit.c else if ((c < 32 || c == 127) && (orig_c == c || (!mc_global.utf8_display && !edit->utf8))) c 442 src/editor/editbuffer.c int c; c 449 src/editor/editbuffer.c c = edit_buffer_get_previous_byte (buf); c 451 src/editor/editbuffer.c if (is_break_char (c)) c 459 src/editor/editbuffer.c last = c; c 460 src/editor/editbuffer.c c = edit_buffer_get_byte (buf, buf->curs1 - i - 1); c 462 src/editor/editbuffer.c if (is_break_char (c)) c 489 src/editor/editbuffer.c edit_buffer_insert (edit_buffer_t *buf, int c) c 502 src/editor/editbuffer.c *((unsigned char *) b + i) = (unsigned char) c; c 521 src/editor/editbuffer.c edit_buffer_insert_ahead (edit_buffer_t *buf, int c) c 534 src/editor/editbuffer.c *((unsigned char *) b + EDIT_BUF_SIZE - 1 - i) = (unsigned char) c; c 556 src/editor/editbuffer.c unsigned char c; c 564 src/editor/editbuffer.c c = *((unsigned char *) b + EDIT_BUF_SIZE - 1 - i); c 580 src/editor/editbuffer.c return c; c 596 src/editor/editbuffer.c unsigned char c; c 604 src/editor/editbuffer.c c = *((unsigned char *) b + i); c 620 src/editor/editbuffer.c return c; c 51 src/editor/editbuffer.h void edit_buffer_insert (edit_buffer_t *buf, int c); c 52 src/editor/editbuffer.h void edit_buffer_insert_ahead (edit_buffer_t *buf, int c); c 460 src/editor/editcmd.c long b, c, d; c 464 src/editor/editcmd.c c = (long) edit_move_forward3 (edit, r, 0, m1); c 467 src/editor/editcmd.c b = MAX (MIN (c, d), MIN (edit->column1, edit->column2)); c 468 src/editor/editcmd.c c = MAX (c, MAX (edit->column1, edit->column2)); c 476 src/editor/editcmd.c q = edit_move_forward3 (edit, r, c, 0); c 580 src/editor/editcmd.c int c; c 585 src/editor/editcmd.c c = edit_buffer_get_byte (&edit->buffer, start); c 587 src/editor/editcmd.c || (x >= edit->column2 && x < edit->column1) || c == '\n') c 589 src/editor/editcmd.c *s++ = c; c 554 src/editor/editdraw.c unsigned int c; c 556 src/editor/editdraw.c c = edit_buffer_get_byte (&edit->buffer, tws - 1); c 557 src/editor/editdraw.c if (!whitespace (c)) c 564 src/editor/editdraw.c unsigned int c; c 597 src/editor/editdraw.c c = edit_buffer_get_utf (&edit->buffer, q, &char_length); c 599 src/editor/editdraw.c c = edit_buffer_get_byte (&edit->buffer, q); c 612 src/editor/editdraw.c switch (c) c 632 src/editor/editdraw.c c = p->style; c 634 src/editor/editdraw.c c |= book_mark << 16; c 636 src/editor/editdraw.c c = p->style | MOD_WHITESPACE; c 640 src/editor/editdraw.c p->style = c; c 645 src/editor/editdraw.c p->style = c; c 649 src/editor/editdraw.c p->style = c; c 655 src/editor/editdraw.c p->style = c; c 658 src/editor/editdraw.c p->style = c; c 664 src/editor/editdraw.c p->style = c; c 673 src/editor/editdraw.c c = p->style & ~MOD_CURSOR; c 678 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 713 src/editor/editdraw.c c = convert_from_8bit_to_utf_c ((unsigned char) c, edit->converter); c 714 src/editor/editdraw.c else if (g_unichar_iswide (c)) c 721 src/editor/editdraw.c c = convert_from_utf_to_current_c (c, edit->converter); c 723 src/editor/editdraw.c c = convert_to_display_c (c); c 726 src/editor/editdraw.c if (c < 32) c 731 src/editor/editdraw.c p->ch = c + 0x40; c 738 src/editor/editdraw.c if (c == 127) c 755 src/editor/editdraw.c printable = g_unichar_isprint (c); c 758 src/editor/editdraw.c printable = is_printable (c); c 762 src/editor/editdraw.c printable = is_printable (c); c 765 src/editor/editdraw.c p->ch = c; c 517 src/editor/editwidget.c int c; c 534 src/editor/editwidget.c c = convert_from_input_c (x_key); c 536 src/editor/editwidget.c if (is_printable (c)) c 539 src/editor/editwidget.c char_for_insertion = c; c 585 src/editor/editwidget.c c = convert_from_utf_to_current (edit->charbuf); c 588 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 303 src/editor/format.c unsigned char c; c 307 src/editor/format.c c = t[i - 1]; c 308 src/editor/format.c if (c == '\n') c 310 src/editor/format.c if (whitespace (c)) c 354 src/editor/format.c replace_at (WEdit *edit, off_t q, int c) c 358 src/editor/format.c edit_insert_ahead (edit, c); c 400 src/editor/format.c int c = '\0'; c 410 src/editor/format.c if (t[i - 1] == '\n' && c == '\n') c 426 src/editor/format.c else if (c == '\n') c 439 src/editor/format.c c = edit_buffer_get_byte (&edit->buffer, p); c 440 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 965 src/editor/syntax.c context_rule_t *c = NULL; c 1069 src/editor/syntax.c c = g_new0 (context_rule_t, 1); c 1070 src/editor/syntax.c g_ptr_array_add (edit->rules, c); c 1071 src/editor/syntax.c c->left = g_string_new (" "); c 1072 src/editor/syntax.c c->right = g_string_new (" "); c 1077 src/editor/syntax.c c = g_new0 (context_rule_t, 1); c 1078 src/editor/syntax.c g_ptr_array_add (edit->rules, c); c 1082 src/editor/syntax.c c->between_delimiters = TRUE; c 1088 src/editor/syntax.c c->whole_word_chars_left = g_strdup (whole_left); c 1089 src/editor/syntax.c c->whole_word_chars_right = g_strdup (whole_right); c 1094 src/editor/syntax.c c->whole_word_chars_left = g_strdup (whole_left); c 1099 src/editor/syntax.c c->whole_word_chars_right = g_strdup (whole_right); c 1105 src/editor/syntax.c c->line_start_left = TRUE; c 1108 src/editor/syntax.c c->left = g_string_new (*a++); c 1113 src/editor/syntax.c c->line_start_right = TRUE; c 1116 src/editor/syntax.c c->right = g_string_new (*a++); c 1117 src/editor/syntax.c c->first_left = c->left->str[0]; c 1118 src/editor/syntax.c c->first_right = c->right->str[0]; c 1120 src/editor/syntax.c c->keyword = g_ptr_array_new_with_free_func (syntax_keyword_free); c 1122 src/editor/syntax.c g_ptr_array_add (c->keyword, k); c 1143 src/editor/syntax.c if (c == NULL) c 1148 src/editor/syntax.c c->spelling = TRUE; c 1265 src/editor/syntax.c c = CONTEXT_RULE (g_ptr_array_index (edit->rules, i)); c 1268 src/editor/syntax.c for (j = 1; j < c->keyword->len; j++) c 1272 src/editor/syntax.c k = SYNTAX_KEYWORD (g_ptr_array_index (c->keyword, j)); c 1276 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 818 src/filemanager/filegui.c int c; c 829 src/filemanager/filegui.c c = tty_get_event (&event, FALSE, ctx->suspended); c 830 src/filemanager/filegui.c if (c == EV_NONE) c 836 src/filemanager/filegui.c dlg_process_event (ui->op_dlg, c, &event); c 945 src/filemanager/find.c int c; c 948 src/filemanager/find.c c = tty_get_event (&event, GROUP (h)->mouse_status == MOU_REPEAT, FALSE); c 949 src/filemanager/find.c if (c != EV_NONE) c 951 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 173 src/learn.c learn_check_key (int c) c 179 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 1359 src/subshell/common.c int c; c 1361 src/subshell/common.c for (c = 0; c < n - su; c++) c 1362 src/subshell/common.c g_string_append_printf (ret, "\\0%03o", (unsigned char) su[c]); c 203 src/textconf.c #define PRINTF(a, b, c) (void) printf ("\t%-15s %s/%s\n", a, b, c) c 204 src/textconf.c #define PRINTF2(a, b, c) (void) printf ("\t%-15s %s%s\n", a, b, c) c 767 src/usermenu.c expand_format (const Widget *edit_widget, char c, gboolean do_quote) c 781 src/usermenu.c if (c == '%') c 795 src/usermenu.c if (g_ascii_islower ((gchar) c)) c 830 src/usermenu.c c_lc = g_ascii_tolower ((gchar) c); c 971 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 201 src/viewer/ascii.c mcview_wcwidth (const WView *view, int c) c 205 src/viewer/ascii.c if (g_unichar_iswide (c)) c 207 src/viewer/ascii.c if (g_unichar_iszerowidth (c)) c 217 src/viewer/ascii.c mcview_ismark (const WView *view, int c) c 219 src/viewer/ascii.c return (view->utf8 && g_unichar_ismark (c)); c 226 src/viewer/ascii.c mcview_is_non_spacing_mark (const WView *view, int c) c 230 src/viewer/ascii.c const GUnicodeType type = g_unichar_type (c); c 242 src/viewer/ascii.c mcview_is_spacing_mark (const WView *view, int c) c 244 src/viewer/ascii.c return (view->utf8 && g_unichar_type (c) == G_UNICODE_SPACING_MARK); c 251 src/viewer/ascii.c mcview_isprint (const WView *view, int c) c 254 src/viewer/ascii.c c = convert_from_8bit_to_utf_c ((unsigned char) c, view->converter); c 255 src/viewer/ascii.c return g_unichar_isprint (c); c 261 src/viewer/ascii.c mcview_char_display (const WView *view, int c, char *s) c 266 src/viewer/ascii.c c = convert_from_8bit_to_utf_c ((unsigned char) c, view->converter); c 267 src/viewer/ascii.c if (!g_unichar_isprint (c)) c 268 src/viewer/ascii.c c = '.'; c 269 src/viewer/ascii.c return g_unichar_to_utf8 (c, s); c 273 src/viewer/ascii.c if (g_unichar_iswide (c)) c 278 src/viewer/ascii.c if (g_unichar_iszerowidth (c)) c 281 src/viewer/ascii.c c = convert_from_utf_to_current_c (c, view->converter); c 286 src/viewer/ascii.c c = convert_to_display_c (c); c 290 src/viewer/ascii.c if (!is_printable (c)) c 291 src/viewer/ascii.c c = '.'; c 292 src/viewer/ascii.c *s = c; c 311 src/viewer/ascii.c mcview_get_next_char (WView *view, mcview_state_machine_t *state, int *c) c 321 src/viewer/ascii.c if (!mcview_get_utf (view, state->offset, c, &char_length)) c 331 src/viewer/ascii.c if (!mcview_get_byte (view, state->offset, c)) c 357 src/viewer/ascii.c mcview_get_next_maybe_nroff_char (WView *view, mcview_state_machine_t *state, int *c, int *color) c 366 src/viewer/ascii.c return mcview_get_next_char (view, state, c); c 368 src/viewer/ascii.c if (!mcview_get_next_char (view, state, c)) c 371 src/viewer/ascii.c if (!mcview_isprint (view, *c)) c 386 src/viewer/ascii.c if (*c == '_' && c3 == '_') c 393 src/viewer/ascii.c else if (*c == c3) c 400 src/viewer/ascii.c else if (*c == '_') c 402 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 361 src/viewer/display.c int c; c 367 src/viewer/display.c for (c = 0; c < r->cols; c++) c 369 src/viewer/display.c cl = view->dpy_text_column + c; c 372 src/viewer/display.c widget_gotoyx (view, r->y + line_row, r->x + c); c 381 src/viewer/display.c widget_gotoyx (view, r->y + nums_row, r->x + c - 1); c 168 src/viewer/hex.c int c; c 242 src/viewer/hex.c if (!mcview_get_byte (view, from, &c)) c 259 src/viewer/hex.c c = curr->value; c 276 src/viewer/hex.c tty_print_char (hex_char[c / 16]); c 281 src/viewer/hex.c tty_print_char (hex_char[c % 16]); c 324 src/viewer/hex.c c = convert_from_8bit_to_utf_c ((unsigned char) c, view->converter); c 325 src/viewer/hex.c if (!g_unichar_isprint (c)) c 326 src/viewer/hex.c c = '.'; c 332 src/viewer/hex.c c = convert_to_display_c (c); c 334 src/viewer/hex.c if (!is_printable (c)) c 335 src/viewer/hex.c c = '.'; c 345 src/viewer/hex.c tty_print_char (c); c 431 src/viewer/internal.h int c; c 433 src/viewer/internal.h while (offset >= 2 * backspaces && mcview_get_byte (view, offset - 2 * backspaces, &c) c 434 src/viewer/internal.h && c == '\b') c 309 src/viewer/lib.c int c; c 319 src/viewer/lib.c if (!mcview_get_byte (view, current, &c)) c 322 src/viewer/lib.c if (c == '\n') c 324 src/viewer/lib.c if (!mcview_get_byte (view, current - 1, &c)) c 327 src/viewer/lib.c if (c == '\r') c 333 src/viewer/lib.c if (!mcview_get_byte (view, current - 1, &c)) c 335 src/viewer/lib.c if (c == '\r' || c == '\n') c 350 src/viewer/lib.c int c; c 356 src/viewer/lib.c for (; mcview_get_byte (view, current, &c); current++) c 358 src/viewer/lib.c if (c == '\n') c 366 src/viewer/lib.c prev_ch = c; c 62 src/viewer/nroff.c int c = 0; c 66 src/viewer/nroff.c if (!mcview_get_utf (nroff->view, nroff_index, &c, &nroff->char_length)) c 70 src/viewer/nroff.c if (!mcview_get_byte (nroff->view, nroff_index, &c) || !g_ascii_isprint (c)) c 77 src/viewer/nroff.c if (!mcview_get_byte (nroff->view, nroff_index, &c)) c 81 src/viewer/nroff.c *ret_val = c; c 83 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 73 tests/lib/strutil/str_verscmp.c { b, c, -1 }, c 74 tests/lib/strutil/str_verscmp.c { a, c, -1 }, c 76 tests/lib/strutil/str_verscmp.c { c, b, 1 }, c 77 tests/lib/strutil/str_verscmp.c { c, a, 1 },