c 180 lib/charsets.c translate_character (GIConv cd, char c) c 184 lib/charsets.c const char *ibuf = &c; c 79 lib/charsets.h convert_to_display_c (int c) c 81 lib/charsets.h if (c < 0 || c >= 256) c 82 lib/charsets.h return c; c 83 lib/charsets.h return (int) conv_displ[c]; c 87 lib/charsets.h convert_from_input_c (int c) c 89 lib/charsets.h if (c < 0 || c >= 256) c 90 lib/charsets.h return c; c 91 lib/charsets.h return (int) conv_input[c]; c 128 lib/global.h #define IS_PATH_SEP(c) ((c) == PATH_SEP) c 126 lib/search/glob.c char c = *str++; c 128 lib/search/glob.c switch (c) c 143 lib/search/glob.c c = ++cnt; c 153 lib/search/glob.c g_string_append_c (buff, c); c 297 lib/search/regex.c gunichar c = g_utf8_get_char_validated (p, -1); c 298 lib/search/regex.c if (c != (gunichar) (-1) && c != (gunichar) (-2)) c 457 lib/search/regex.c char c = curr_str[1]; c 461 lib/search/regex.c if (c == '{') c 481 lib/search/regex.c if (c == 'x') c 484 lib/search/regex.c c = curr_str[2]; c 485 lib/search/regex.c if (c == '{') c 504 lib/search/regex.c else if (!g_ascii_isxdigit ((guchar) c)) c 512 lib/search/regex.c c = curr_str[3]; c 513 lib/search/regex.c if (!g_ascii_isxdigit ((guchar) c)) c 523 lib/search/regex.c if (strchr ("ntvbrfa", c) != NULL) c 689 lib/search/regex.c unsigned int c = 0; c 710 lib/search/regex.c c = c * 16 + from[i] - '0'; c 712 lib/search/regex.c c = c * 16 + 10 + from[i] - 'a'; c 714 lib/search/regex.c c = c * 16 + 10 + from[i] - 'A'; c 721 lib/search/regex.c c = c * 8 + from[i] - '0'; c 727 lib/search/regex.c c = '\n'; c 730 lib/search/regex.c c = '\t'; c 733 lib/search/regex.c c = '\v'; c 736 lib/search/regex.c c = '\b'; c 739 lib/search/regex.c c = '\r'; c 742 lib/search/regex.c c = '\f'; c 745 lib/search/regex.c c = '\a'; c 753 lib/search/regex.c if (c < 0x80 || !is_utf8) c 754 lib/search/regex.c g_string_append_c (dest_str, (char) c); c 755 lib/search/regex.c else if (c < 0x800) c 757 lib/search/regex.c b = 0xC0 | (c >> 6); c 759 lib/search/regex.c b = 0x80 | (c & 0x3F); c 762 lib/search/regex.c else if (c < 0x10000) c 764 lib/search/regex.c b = 0xE0 | (c >> 12); c 766 lib/search/regex.c b = 0x80 | ((c >> 6) & 0x3F); c 768 lib/search/regex.c b = 0x80 | (c & 0x3F); c 771 lib/search/regex.c else if (c < 0x10FFFF) c 773 lib/search/regex.c b = 0xF0 | (c >> 16); c 775 lib/search/regex.c b = 0x80 | ((c >> 12) & 0x3F); c 777 lib/search/regex.c b = 0x80 | ((c >> 6) & 0x3F); c 779 lib/search/regex.c b = 0x80 | (c & 0x3F); c 80 lib/strutil/filevercmp.c order (unsigned char c) c 82 lib/strutil/filevercmp.c if (g_ascii_isdigit (c)) c 84 lib/strutil/filevercmp.c if (g_ascii_isalpha (c)) c 85 lib/strutil/filevercmp.c return c; c 86 lib/strutil/filevercmp.c if (c == '~') c 88 lib/strutil/filevercmp.c return (int) c + UCHAR_MAX + 1; c 928 lib/strutil/strutil.c char c = '\0'; c 943 lib/strutil/strutil.c c = q[0]; c 954 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 101 lib/tty/color-internal.c parse_hex_digit (char c) c 103 lib/tty/color-internal.c if (c >= '0' && c <= '9') c 104 lib/tty/color-internal.c return c - '0'; c 105 lib/tty/color-internal.c c |= 0x20; c 106 lib/tty/color-internal.c if (c >= 'a' && c <= 'f') c 107 lib/tty/color-internal.c return c - 'a' + 10; c 717 lib/tty/key.c int c; c 727 lib/tty/key.c c = get_key_code (0); c 728 lib/tty/key.c if (c != -1) c 736 lib/tty/key.c return c; c 770 lib/tty/key.c char c; c 775 lib/tty/key.c while ((c = tty_lowlevel_getch ()) != ';') c 777 lib/tty/key.c if (c < '0' || c > '9') c 779 lib/tty/key.c btn = 10 * btn + (c - '0'); c 781 lib/tty/key.c while ((c = tty_lowlevel_getch ()) != ';') c 783 lib/tty/key.c if (c < '0' || c > '9') c 785 lib/tty/key.c ev->x = 10 * ev->x + (c - '0'); c 787 lib/tty/key.c while ((c = tty_lowlevel_getch ()) != 'M' && c != 'm') c 789 lib/tty/key.c if (c < '0' || c > '9') c 791 lib/tty/key.c ev->y = 10 * ev->y + (c - '0'); c 797 lib/tty/key.c if (c == 'm') c 1000 lib/tty/key.c push_char (int c) c 1009 lib/tty/key.c *(seq_append++) = c; c 1023 lib/tty/key.c unsigned int c = code & ~KEY_M_MASK; /* code without modifier */ c 1034 lib/tty/key.c if (c < 32 || c >= 256) c 1038 lib/tty/key.c if (c == '\r') c 1039 lib/tty/key.c c = '\n'; c 1042 lib/tty/key.c if (c == KEY_SCANCEL) c 1043 lib/tty/key.c c = '\t'; c 1046 lib/tty/key.c if (c == KEY_BTAB) c 1048 lib/tty/key.c c = '\t'; c 1053 lib/tty/key.c if (c == KEY_F (0)) c 1054 lib/tty/key.c c = KEY_F (10); c 1062 lib/tty/key.c if (c == '\b') c 1065 lib/tty/key.c c = KEY_BACKSPACE; c 1068 lib/tty/key.c else if (c < 32 && c != ESC_CHAR && c != '\t' && c != '\n') c 1074 lib/tty/key.c if (c == 127 && mod == 0) c 1078 lib/tty/key.c c = KEY_BACKSPACE; c 1081 lib/tty/key.c if (c == '0' && mod == 0 && (qmod & KEY_M_SHIFT) == KEY_M_SHIFT) c 1085 lib/tty/key.c c = KEY_IC; c 1088 lib/tty/key.c if (c == '.' && mod == 0 && (qmod & KEY_M_SHIFT) == KEY_M_SHIFT) c 1092 lib/tty/key.c c = KEY_DC; c 1097 lib/tty/key.c if (c == 0177) c 1098 lib/tty/key.c c = KEY_BACKSPACE; c 1102 lib/tty/key.c if (c == 'd' & 31) c 1104 lib/tty/key.c c = KEY_DC; c 1109 lib/tty/key.c if (c == 'h' & 31) c 1111 lib/tty/key.c c = KEY_BACKSPACE; c 1117 lib/tty/key.c if (c == KEY_BACKSPACE && (mod & KEY_M_SHIFT) != 0) c 1121 lib/tty/key.c if (c >= KEY_F (1) && c <= KEY_F (10) && (mod & KEY_M_SHIFT) != 0) c 1122 lib/tty/key.c c += 10; c 1125 lib/tty/key.c if (c >= KEY_F (1) && c <= KEY_F (20)) c 1129 lib/tty/key.c switch (c) c 1132 lib/tty/key.c c = '+'; c 1135 lib/tty/key.c c = '-'; c 1138 lib/tty/key.c c = '*'; c 1144 lib/tty/key.c return (mod | c); c 1153 lib/tty/key.c int c; c 1162 lib/tty/key.c c = tty_lowlevel_getch (); c 1164 lib/tty/key.c return c; c 1170 lib/tty/key.c learn_store_key (char *buffer, char **p, int c) c 1175 lib/tty/key.c if (c == ESC_CHAR) c 1180 lib/tty/key.c else if (c < ' ') c 1183 lib/tty/key.c *(*p)++ = c + 'a' - 1; c 1185 lib/tty/key.c else if (c == '^') c 1191 lib/tty/key.c *(*p)++ = (char) c; c 1732 lib/tty/key.c int c; c 1748 lib/tty/key.c c = *pending_keys++; c 1749 lib/tty/key.c while (c == ESC_CHAR) c 1750 lib/tty/key.c c = ALT (*pending_keys++); c 1771 lib/tty/key.c if (c > 127 && c < 256 && use_8th_bit_as_meta) c 1772 lib/tty/key.c c = ALT (c & 0x7f); c 1782 lib/tty/key.c c = tty_lowlevel_getch (); c 1784 lib/tty/key.c if (c == KEY_RESIZE) c 1791 lib/tty/key.c if (c == -1) c 1816 lib/tty/key.c else if (c == -1) c 1837 lib/tty/key.c if (c > 127 && c < 256 && use_8th_bit_as_meta) c 1839 lib/tty/key.c c &= 0x7f; c 1849 lib/tty/key.c if (c == this->ch) c 1855 lib/tty/key.c c = this->code; c 1860 lib/tty/key.c if (!push_char (c)) c 1877 lib/tty/key.c c = getch_with_timeout (old_esc_mode_timeout); c 1878 lib/tty/key.c if (c != -1) c 1888 lib/tty/key.c c = tty_lowlevel_getch (); c 1903 lib/tty/key.c if (g_ascii_isdigit (c)) c 1904 lib/tty/key.c c = KEY_F (c - '0'); c 1905 lib/tty/key.c else if (c == ' ') c 1906 lib/tty/key.c c = ESC_CHAR; c 1908 lib/tty/key.c c = ALT (c); c 1915 lib/tty/key.c push_char (c); c 1922 lib/tty/key.c return correct_key_code (c); c 1934 lib/tty/key.c int c; c 2110 lib/tty/key.c c = block ? getch_with_delay () : get_key_code (1); c 2117 lib/tty/key.c if (mouse_enabled && (c == MCKEY_MOUSE c 2119 lib/tty/key.c || c == KEY_MOUSE c 2121 lib/tty/key.c || c == MCKEY_EXTENDED_MOUSE)) c 2124 lib/tty/key.c gboolean extended = c == MCKEY_EXTENDED_MOUSE; c 2127 lib/tty/key.c extended = extended || (c == KEY_MOUSE && xmouse_seq == NULL c 2132 lib/tty/key.c c = (event->type != 0) ? EV_MOUSE : EV_NONE; c 2134 lib/tty/key.c else if (c == MCKEY_BRACKETED_PASTING_START) c 2137 lib/tty/key.c c = EV_NONE; c 2139 lib/tty/key.c else if (c == MCKEY_BRACKETED_PASTING_END) c 2142 lib/tty/key.c c = EV_NONE; c 2145 lib/tty/key.c return c; c 2174 lib/tty/key.c int c; c 2179 lib/tty/key.c c = tty_lowlevel_getch (); c 2180 lib/tty/key.c while (c == -1) c 2181 lib/tty/key.c c = tty_lowlevel_getch (); /* Sanity check, should be unnecessary */ c 2182 lib/tty/key.c learn_store_key (buffer, &p, c); c 2195 lib/tty/key.c while ((c = tty_lowlevel_getch ()) == -1) c 2211 lib/tty/key.c if (c == -1) c 2213 lib/tty/key.c learn_store_key (buffer, &p, 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 609 lib/tty/tty-ncurses.c tty_print_char (int c) c 612 lib/tty/tty-ncurses.c addch (c); c 619 lib/tty/tty-ncurses.c tty_print_anychar (int c) c 621 lib/tty/tty-ncurses.c if (mc_global.utf8_display || c > 255) c 626 lib/tty/tty-ncurses.c res = g_unichar_to_utf8 (c, (char *) str); c 643 lib/tty/tty-ncurses.c if (g_unichar_iswide (c)) c 645 lib/tty/tty-ncurses.c else if (!g_unichar_iszerowidth (c)) c 652 lib/tty/tty-ncurses.c addch (c); c 660 lib/tty/tty-ncurses.c tty_print_alt_char (int c, gboolean single) c 664 lib/tty/tty-ncurses.c if ((chtype) c == ACS_VLINE) c 665 lib/tty/tty-ncurses.c c = mc_tty_frm[single ? MC_TTY_FRM_VERT : MC_TTY_FRM_DVERT]; c 666 lib/tty/tty-ncurses.c else if ((chtype) c == ACS_HLINE) c 667 lib/tty/tty-ncurses.c c = mc_tty_frm[single ? MC_TTY_FRM_HORIZ : MC_TTY_FRM_DHORIZ]; c 668 lib/tty/tty-ncurses.c else if ((chtype) c == ACS_LTEE) c 669 lib/tty/tty-ncurses.c c = mc_tty_frm[single ? MC_TTY_FRM_LEFTMIDDLE : MC_TTY_FRM_DLEFTMIDDLE]; c 670 lib/tty/tty-ncurses.c else if ((chtype) c == ACS_RTEE) c 671 lib/tty/tty-ncurses.c c = mc_tty_frm[single ? MC_TTY_FRM_RIGHTMIDDLE : MC_TTY_FRM_DRIGHTMIDDLE]; c 672 lib/tty/tty-ncurses.c else if ((chtype) c == ACS_ULCORNER) c 673 lib/tty/tty-ncurses.c c = mc_tty_frm[single ? MC_TTY_FRM_LEFTTOP : MC_TTY_FRM_DLEFTTOP]; c 674 lib/tty/tty-ncurses.c else if ((chtype) c == ACS_LLCORNER) c 675 lib/tty/tty-ncurses.c c = mc_tty_frm[single ? MC_TTY_FRM_LEFTBOTTOM : MC_TTY_FRM_DLEFTBOTTOM]; c 676 lib/tty/tty-ncurses.c else if ((chtype) c == ACS_URCORNER) c 677 lib/tty/tty-ncurses.c c = mc_tty_frm[single ? MC_TTY_FRM_RIGHTTOP : MC_TTY_FRM_DRIGHTTOP]; c 678 lib/tty/tty-ncurses.c else if ((chtype) c == ACS_LRCORNER) c 679 lib/tty/tty-ncurses.c c = mc_tty_frm[single ? MC_TTY_FRM_RIGHTBOTTOM : MC_TTY_FRM_DRIGHTBOTTOM]; c 680 lib/tty/tty-ncurses.c else if ((chtype) c == ACS_PLUS) c 681 lib/tty/tty-ncurses.c c = mc_tty_frm[MC_TTY_FRM_CROSS]; c 683 lib/tty/tty-ncurses.c addch (c); c 483 lib/tty/tty-slang.c int c; c 488 lib/tty/tty-slang.c c = SLang_getkey (); c 489 lib/tty/tty-slang.c if (c == SLANG_GETKEY_ERROR) c 497 lib/tty/tty-slang.c return c; c 651 lib/tty/tty-slang.c tty_print_char (int c) c 653 lib/tty/tty-slang.c SLsmg_write_char ((SLwchar_Type) ((unsigned int) c)); c 659 lib/tty/tty-slang.c tty_print_alt_char (int c, gboolean single) c 664 lib/tty/tty-slang.c switch (c) c 667 lib/tty/tty-slang.c DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_VERT : MC_TTY_FRM_DVERT]); c 670 lib/tty/tty-slang.c DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_HORIZ : MC_TTY_FRM_DHORIZ]); c 673 lib/tty/tty-slang.c DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_LEFTMIDDLE : MC_TTY_FRM_DLEFTMIDDLE]); c 676 lib/tty/tty-slang.c DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_RIGHTMIDDLE : MC_TTY_FRM_DRIGHTMIDDLE]); c 679 lib/tty/tty-slang.c DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_TOPMIDDLE : MC_TTY_FRM_DTOPMIDDLE]); c 682 lib/tty/tty-slang.c DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_BOTTOMMIDDLE : MC_TTY_FRM_DBOTTOMMIDDLE]); c 685 lib/tty/tty-slang.c DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_LEFTTOP : MC_TTY_FRM_DLEFTTOP]); c 688 lib/tty/tty-slang.c DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_LEFTBOTTOM : MC_TTY_FRM_DLEFTBOTTOM]); c 691 lib/tty/tty-slang.c DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_RIGHTTOP : MC_TTY_FRM_DRIGHTTOP]); c 694 lib/tty/tty-slang.c DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_RIGHTBOTTOM : MC_TTY_FRM_DRIGHTBOTTOM]); c 697 lib/tty/tty-slang.c DRAW (c, mc_tty_frm[MC_TTY_FRM_CROSS]); c 700 lib/tty/tty-slang.c SLsmg_write_char ((unsigned int) c); c 708 lib/tty/tty-slang.c tty_print_anychar (int c) c 710 lib/tty/tty-slang.c if (c > 255) c 715 lib/tty/tty-slang.c res = g_unichar_to_utf8 (c, str); c 729 lib/tty/tty-slang.c if (!is_printable (c)) c 730 lib/tty/tty-slang.c c = '.'; c 731 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 70 lib/tty/win.c unsigned char c; c 72 lib/tty/win.c while (read (0, &c, 1) != 1); c 73 lib/tty/win.c if (c == '\n') c 75 lib/tty/win.c r = (c - 'A') * 16; c 76 lib/tty/win.c while (read (0, &c, 1) != 1); c 77 lib/tty/win.c r += (c - 'A'); c 120 lib/tty/win.c int c; c 122 lib/tty/win.c c = rxvt_getc (); c 123 lib/tty/win.c if (c < 0) c 126 lib/tty/win.c k[j++] = c; c 129 lib/tty/win.c c = rxvt_getc (); c 130 lib/tty/win.c if (c < 0) c 133 lib/tty/win.c k[j++] = c; c 83 lib/util.c is_7bit_printable (unsigned char c) c 85 lib/util.c return (c > 31 && c < 127); c 92 lib/util.c is_iso_printable (unsigned char c) c 94 lib/util.c return ((c > 31 && c < 127) || c >= 160); c 100 lib/util.c is_8bit_printable (unsigned char c) c 104 lib/util.c return is_iso_printable (c); c 106 lib/util.c return (c > 31 && c != 127 && c != 155); c 115 lib/util.c char *buf, *buf2, *q, *r, c; c 136 lib/util.c c = *q; c 169 lib/util.c *q = c; c 172 lib/util.c while (c != '\0'); c 227 lib/util.c is_printable (int c) c 229 lib/util.c c &= 0xff; c 234 lib/util.c return is_8bit_printable (c); c 237 lib/util.c return is_7bit_printable (c); c 240 lib/util.c return is_8bit_printable (c); c 242 lib/util.c return is_iso_printable (c); c 989 lib/util.c char c; c 991 lib/util.c c = *p | 0x20; c 992 lib/util.c if (c >= 'a' && c <= 'z') c 994 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 144 lib/util.h int is_printable (int c); c 149 lib/util.h char *name_quote (const char *c, gboolean quote_percent); c 152 lib/util.h char *fake_name_quote (const char *c, gboolean quote_percent); c 1623 lib/vfs/direntry.c char c; c 1650 lib/vfs/direntry.c while (read (sock, &c, sizeof (c)) > 0) c 1657 lib/vfs/direntry.c ret1 = fwrite (&c, 1, 1, logfile); c 1662 lib/vfs/direntry.c if (c == '\n') c 57 lib/widget/check.c WCheck *c = CHECK (w); c 62 lib/widget/check.c if (c->text.hotkey != NULL) c 64 lib/widget/check.c if (g_ascii_tolower ((gchar) c->text.hotkey[0]) == parm) c 76 lib/widget/check.c c->state = !c->state; c 92 lib/widget/check.c tty_print_string (c->state ? "[x] " : "[ ] "); c 93 lib/widget/check.c hotkey_draw (w, c->text, focused); c 98 lib/widget/check.c hotkey_free (c->text); c 136 lib/widget/check.c WCheck *c; c 139 lib/widget/check.c c = g_new (WCheck, 1); c 140 lib/widget/check.c w = WIDGET (c); c 141 lib/widget/check.c c->text = hotkey_new (text); c 143 lib/widget/check.c widget_init (w, y, x, 1, 4 + hotkey_width (c->text), check_callback, check_mouse_callback); c 145 lib/widget/check.c c->state = state; c 147 lib/widget/check.c return c; c 314 lib/widget/group.c Widget *c = WIDGET (data); c 315 lib/widget/group.c Widget *g = WIDGET (c->owner); c 317 lib/widget/group.c WRect r = { c->y, c->x, c->lines, c->cols }; c 319 lib/widget/group.c if ((c->pos_flags & WPOS_CENTER_HORZ) != 0) c 320 lib/widget/group.c r.x = g->x + (g->cols - c->cols) / 2; c 321 lib/widget/group.c else if ((c->pos_flags & WPOS_KEEP_LEFT) != 0 && (c->pos_flags & WPOS_KEEP_RIGHT) != 0) c 326 lib/widget/group.c else if ((c->pos_flags & WPOS_KEEP_LEFT) != 0) c 328 lib/widget/group.c else if ((c->pos_flags & WPOS_KEEP_RIGHT) != 0) c 331 lib/widget/group.c if ((c->pos_flags & WPOS_CENTER_VERT) != 0) c 332 lib/widget/group.c r.y = g->y + (g->lines - c->lines) / 2; c 333 lib/widget/group.c else if ((c->pos_flags & WPOS_KEEP_TOP) != 0 && (c->pos_flags & WPOS_KEEP_BOTTOM) != 0) c 338 lib/widget/group.c else if ((c->pos_flags & WPOS_KEEP_TOP) != 0) c 340 lib/widget/group.c else if ((c->pos_flags & WPOS_KEEP_BOTTOM) != 0) c 343 lib/widget/group.c send_message (c, NULL, MSG_RESIZE, 0, &r); c 455 lib/widget/group.c int c; c 478 lib/widget/group.c c = key & ~ALT (0); c 479 lib/widget/group.c if (key & ALT (0) && g_ascii_isalpha (c)) c 480 lib/widget/group.c key = g_ascii_tolower (c); c 103 lib/widget/input.c char c; c 107 lib/widget/input.c c = '^'; c 109 lib/widget/input.c c = 'v'; c 111 lib/widget/input.c c = '|'; c 122 lib/widget/input.c tty_print_char (c); c 941 lib/widget/input_complete.c char c; c 945 lib/widget/input_complete.c c = (cdpath == NULL) ? '\0' : ':'; c 947 lib/widget/input_complete.c while (matches == NULL && c == ':') c 955 lib/widget/input_complete.c c = *s; c 966 lib/widget/input_complete.c *s = c; c 93 lib/widget/label.c char c = '\0'; c 99 lib/widget/label.c c = q[0]; c 109 lib/widget/label.c q[0] = c; c 133 lib/widget/radio.c int c; c 135 lib/widget/radio.c c = g_ascii_tolower ((gchar) r->texts[i].hotkey[0]); c 136 lib/widget/radio.c if (c != parm) c 646 lib/widget/wtools.c int c; c 670 lib/widget/wtools.c c = tty_get_event (&event, FALSE, sm->block); c 671 lib/widget/wtools.c if (c == EV_NONE) c 677 lib/widget/wtools.c dlg_process_event (sm->dlg, c, &event); c 409 src/cons.handler.c char c; c 419 src/cons.handler.c c = screen_shot.buf[line * screen_info.mv_csz + col] & 0xFF; c 420 src/cons.handler.c tty_print_char (c); c 2525 src/diffviewer/ydiff.c dview_display_file (const WDiff * dview, diff_place_t ord, int r, int c, int height, int width) c 2558 src/diffviewer/ydiff.c c += xwidth; c 2580 src/diffviewer/ydiff.c tty_gotoyx (r + j, c - 2); c 2587 src/diffviewer/ydiff.c tty_gotoyx (r + j, c - xwidth); c 2612 src/diffviewer/ydiff.c tty_gotoyx (r + j, c); c 2677 src/diffviewer/ydiff.c tty_gotoyx (r + j, c - xwidth); c 2689 src/diffviewer/ydiff.c tty_gotoyx (r + j, c); c 2743 src/diffviewer/ydiff.c tty_gotoyx (r + j, c - xwidth); c 2747 src/diffviewer/ydiff.c tty_gotoyx (r + j, c); c 2758 src/diffviewer/ydiff.c dview_status (const WDiff * dview, diff_place_t ord, int width, int c) c 2768 src/diffviewer/ydiff.c tty_gotoyx (0, c); c 152 src/editor/bookmark.c book_mark_query_color (WEdit * edit, long line, int c) c 162 src/editor/bookmark.c if (p->c == c) c 174 src/editor/bookmark.c book_mark_insert (WEdit * edit, long line, int c) c 183 src/editor/bookmark.c if (p->c != c) c 185 src/editor/bookmark.c p->c = c; c 194 src/editor/bookmark.c q->c = c; c 216 src/editor/bookmark.c book_mark_clear (WEdit * edit, long line, int c) c 227 src/editor/bookmark.c if (p->line == line && (p->c == c || c == -1)) c 250 src/editor/bookmark.c book_mark_flush (WEdit * edit, int c) c 263 src/editor/bookmark.c if (q->c == c || c == -1) c 327 src/editor/bookmark.c if (p->c == color && p->line >= 0) c 77 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 172 src/editor/edit-impl.h void edit_insert (WEdit * edit, int c); c 175 src/editor/edit-impl.h void edit_push_undo_action (WEdit * edit, long c); c 176 src/editor/edit-impl.h void edit_push_redo_action (WEdit * edit, long c); c 178 src/editor/edit-impl.h void edit_insert_ahead (WEdit * edit, int c); c 264 src/editor/edit-impl.h void book_mark_insert (WEdit * edit, long line, int c); c 265 src/editor/edit-impl.h gboolean book_mark_query_color (WEdit * edit, long line, int c); c 267 src/editor/edit-impl.h gboolean book_mark_clear (WEdit * edit, long line, int c); c 268 src/editor/edit-impl.h void book_mark_flush (WEdit * edit, int c); c 275 src/editor/edit-impl.h gboolean is_break_char (char c); c 269 src/editor/edit.c int c; c 272 src/editor/edit.c while ((c = fgetc (f)) >= 0) c 274 src/editor/edit.c edit_insert (edit, c); c 536 src/editor/edit.c long c; c 543 src/editor/edit.c c = edit->undo_stack[sp]; c 544 src/editor/edit.c if (c >= 0) c 548 src/editor/edit.c return c; c 554 src/editor/edit.c c = edit->undo_stack[(sp - 1) & edit->undo_stack_size_mask]; c 563 src/editor/edit.c return c; c 569 src/editor/edit.c long c; c 576 src/editor/edit.c c = edit->redo_stack[sp]; c 577 src/editor/edit.c if (c >= 0) c 580 src/editor/edit.c return c; c 586 src/editor/edit.c c = edit->redo_stack[(sp - 1) & edit->redo_stack_size_mask]; c 592 src/editor/edit.c return c; c 598 src/editor/edit.c long c; c 605 src/editor/edit.c c = edit->undo_stack[sp]; c 606 src/editor/edit.c if (c >= 0) c 607 src/editor/edit.c return c; c 612 src/editor/edit.c c = edit->undo_stack[(sp - 1) & edit->undo_stack_size_mask]; c 613 src/editor/edit.c return c; c 670 src/editor/edit.c int c; c 672 src/editor/edit.c c = edit_buffer_get_byte (buf, s++); c 673 src/editor/edit.c if (!isspace (c)) c 883 src/editor/edit.c my_type_of (int c) c 890 src/editor/edit.c if (c == 0) c 892 src/editor/edit.c if (c == '!') c 895 src/editor/edit.c if (g_ascii_isupper ((gchar) c)) c 896 src/editor/edit.c c = 'A'; c 897 src/editor/edit.c else if (g_ascii_islower ((gchar) c)) c 898 src/editor/edit.c c = 'a'; c 899 src/editor/edit.c else if (g_ascii_isalpha (c)) c 900 src/editor/edit.c c = 'a'; c 901 src/editor/edit.c else if (isdigit (c)) c 902 src/editor/edit.c c = '0'; c 903 src/editor/edit.c else if (isspace (c)) c 904 src/editor/edit.c c = ' '; c 905 src/editor/edit.c q = strchr (option_chars_move_whole_word, c); c 915 src/editor/edit.c while ((q = strchr (q + 1, c))); c 1003 src/editor/edit.c int c; c 1008 src/editor/edit.c c = edit_buffer_get_utf (&edit->buffer, edit->buffer.curs1, &char_length); c 1014 src/editor/edit.c c = edit_buffer_get_current_byte (&edit->buffer); c 1016 src/editor/edit.c if (option_cursor_beyond_eol && c == '\n') c 1396 src/editor/edit.c char c; c 1398 src/editor/edit.c c = edit_buffer_get_byte (&edit->buffer, p++); c 1399 src/editor/edit.c if (!whitespace (c)) c 1401 src/editor/edit.c edit_insert (edit, c); c 1482 src/editor/edit.c int c; c 1485 src/editor/edit.c c = edit_buffer_get_byte (&edit->buffer, curs); c 1486 src/editor/edit.c if (c == '\n' || curs <= 0) c 1491 src/editor/edit.c if (whitespace (c)) c 1516 src/editor/edit.c int i = 1, inc = -1, c, d, n = 0; c 1521 src/editor/edit.c c = edit_buffer_get_current_byte (&edit->buffer); c 1522 src/editor/edit.c p = strchr (b, c); c 1529 src/editor/edit.c if (strchr ("{[(", c) != NULL) c 1556 src/editor/edit.c i += (a == c) - (a == d); c 1854 src/editor/edit.c unsigned char c; c 1856 src/editor/edit.c c = edit_buffer_get_byte (&edit->buffer, i); c 1857 src/editor/edit.c if (!(c == '\n' || c == '\r')) c 1860 src/editor/edit.c if (fputc (c, f) < 0) c 1878 src/editor/edit.c if (c == '\r' && c1 == '\n') c 1882 src/editor/edit.c if (c == '\r' && c1 == '\r') c 1899 src/editor/edit.c if (c == '\r' && c1 == '\n') c 1911 src/editor/edit.c if (c == '\r' && c1 == '\n') c 1915 src/editor/edit.c if (c == '\n' && c1 == '\n') c 1939 src/editor/edit.c is_break_char (char c) c 1941 src/editor/edit.c return (isspace (c) || strchr ("{}[]()<>=|/\\!?~-+`'\",.;:#$%^&*", c)); c 2330 src/editor/edit.c edit_push_undo_action (WEdit * edit, long c) c 2356 src/editor/edit.c edit_push_redo_action (edit, c); c 2371 src/editor/edit.c if (d == c && edit->undo_stack[spm1] > -1000000000) c 2373 src/editor/edit.c if (c < KEY_PRESS) /* --> no need to push multiple do-nothings */ c 2381 src/editor/edit.c if (d == c) c 2383 src/editor/edit.c if (c >= KEY_PRESS) c 2390 src/editor/edit.c edit->undo_stack[sp] = c; c 2398 src/editor/edit.c c = (edit->undo_stack_pointer + 2) & edit->undo_stack_size_mask; c 2399 src/editor/edit.c if ((unsigned long) c == edit->undo_stack_bottom || c 2400 src/editor/edit.c (((unsigned long) c + 1) & edit->undo_stack_size_mask) == edit->undo_stack_bottom) c 2419 src/editor/edit.c edit_push_redo_action (WEdit * edit, long c) c 2450 src/editor/edit.c if (d == c && edit->redo_stack[spm1] > -1000000000) c 2452 src/editor/edit.c if (c < KEY_PRESS) /* --> no need to push multiple do-nothings */ c 2460 src/editor/edit.c if (d == c) c 2462 src/editor/edit.c if (c >= KEY_PRESS) c 2469 src/editor/edit.c edit->redo_stack[sp] = c; c 2477 src/editor/edit.c c = (edit->redo_stack_pointer + 2) & edit->redo_stack_size_mask; c 2478 src/editor/edit.c if ((unsigned long) c == edit->redo_stack_bottom || c 2479 src/editor/edit.c (((unsigned long) c + 1) & edit->redo_stack_size_mask) == edit->redo_stack_bottom) c 2504 src/editor/edit.c edit_insert (WEdit * edit, int c) c 2510 src/editor/edit.c if (c == '\n') c 2519 src/editor/edit.c if (c == '\n') c 2529 src/editor/edit.c if (c > 32) c 2538 src/editor/edit.c edit_buffer_insert (&edit->buffer, c); c 2545 src/editor/edit.c edit_insert_ahead (WEdit * edit, int c) c 2550 src/editor/edit.c if (c == '\n') c 2554 src/editor/edit.c if (c == '\n') c 2561 src/editor/edit.c if (c > 32) c 2570 src/editor/edit.c edit_buffer_insert_ahead (&edit->buffer, c); c 2718 src/editor/edit.c int c; c 2722 src/editor/edit.c c = edit_buffer_get_previous_byte (&edit->buffer); c 2723 src/editor/edit.c edit_buffer_insert_ahead (&edit->buffer, c); c 2724 src/editor/edit.c c = edit_buffer_backspace (&edit->buffer); c 2725 src/editor/edit.c if (c == '\n') c 2736 src/editor/edit.c int c; c 2740 src/editor/edit.c c = edit_buffer_get_current_byte (&edit->buffer); c 2741 src/editor/edit.c edit_buffer_insert (&edit->buffer, c); c 2742 src/editor/edit.c c = edit_buffer_delete (&edit->buffer); c 2743 src/editor/edit.c if (c == '\n') c 2772 src/editor/edit.c int c, orig_c; c 2782 src/editor/edit.c orig_c = c = edit_buffer_get_byte (&edit->buffer, p); c 2802 src/editor/edit.c c = convert_to_display_c (c); c 2805 src/editor/edit.c if (c == '\n') c 2807 src/editor/edit.c if (c == '\t') c 2809 src/editor/edit.c else if ((c < 32 || c == 127) && (orig_c == c c 443 src/editor/editbuffer.c edit_buffer_insert (edit_buffer_t * buf, int c) c 456 src/editor/editbuffer.c *((unsigned char *) b + i) = (unsigned char) c; c 475 src/editor/editbuffer.c edit_buffer_insert_ahead (edit_buffer_t * buf, int c) c 488 src/editor/editbuffer.c *((unsigned char *) b + EDIT_BUF_SIZE - 1 - i) = (unsigned char) c; c 510 src/editor/editbuffer.c unsigned char c; c 518 src/editor/editbuffer.c c = *((unsigned char *) b + EDIT_BUF_SIZE - 1 - i); c 535 src/editor/editbuffer.c return c; c 551 src/editor/editbuffer.c unsigned char c; c 559 src/editor/editbuffer.c c = *((unsigned char *) b + i); c 576 src/editor/editbuffer.c return c; c 52 src/editor/editbuffer.h void edit_buffer_insert (edit_buffer_t * buf, int c); c 53 src/editor/editbuffer.h void edit_buffer_insert_ahead (edit_buffer_t * buf, int c); c 533 src/editor/editcmd.c long b, c, d; c 537 src/editor/editcmd.c c = (long) edit_move_forward3 (edit, edit_buffer_get_bol (&edit->buffer, m1), 0, m1); c 539 src/editor/editcmd.c b = MAX (MIN (c, d), MIN (edit->column1, edit->column2)); c 540 src/editor/editcmd.c c = MAX (c, MAX (edit->column1, edit->column2)); c 548 src/editor/editcmd.c q = edit_move_forward3 (edit, r, c, 0); c 1053 src/editor/editcmd.c int c; c 1057 src/editor/editcmd.c c = edit_buffer_get_byte (&edit->buffer, start); c 1059 src/editor/editcmd.c || (x >= edit->column2 && x < edit->column1) || c == '\n') c 1061 src/editor/editcmd.c *s++ = c; c 1134 src/editor/editcmd.c int c; c 1141 src/editor/editcmd.c c = edit_buffer_get_previous_byte (buf); c 1143 src/editor/editcmd.c if (is_break_char (c)) c 1151 src/editor/editcmd.c last = c; c 1152 src/editor/editcmd.c c = edit_buffer_get_byte (buf, buf->curs1 - i - 1); c 1154 src/editor/editcmd.c if (is_break_char (c)) c 573 src/editor/editdraw.c unsigned int c; c 575 src/editor/editdraw.c c = edit_buffer_get_byte (&edit->buffer, tws - 1); c 576 src/editor/editdraw.c if (!whitespace (c)) c 583 src/editor/editdraw.c unsigned int c; c 616 src/editor/editdraw.c c = edit_buffer_get_utf (&edit->buffer, q, &char_length); c 619 src/editor/editdraw.c c = edit_buffer_get_byte (&edit->buffer, q); c 630 src/editor/editdraw.c switch (c) c 650 src/editor/editdraw.c c = p->style; c 652 src/editor/editdraw.c c |= book_mark << 16; c 654 src/editor/editdraw.c c = p->style | MOD_WHITESPACE; c 658 src/editor/editdraw.c p->style = c; c 663 src/editor/editdraw.c p->style = c; c 667 src/editor/editdraw.c p->style = c; c 673 src/editor/editdraw.c p->style = c; c 676 src/editor/editdraw.c p->style = c; c 682 src/editor/editdraw.c p->style = c; c 691 src/editor/editdraw.c c = p->style & ~MOD_CURSOR; c 696 src/editor/editdraw.c p->style = c; c 703 src/editor/editdraw.c c = p->style & ~MOD_CURSOR; c 708 src/editor/editdraw.c p->style = c; c 731 src/editor/editdraw.c c = convert_from_8bit_to_utf_c ((unsigned char) c, edit->converter); c 732 src/editor/editdraw.c else if (g_unichar_iswide (c)) c 739 src/editor/editdraw.c c = convert_from_utf_to_current_c (c, edit->converter); c 741 src/editor/editdraw.c c = convert_to_display_c (c); c 745 src/editor/editdraw.c if (c < 32) c 750 src/editor/editdraw.c p->ch = c + 0x40; c 757 src/editor/editdraw.c if (c == 127) c 772 src/editor/editdraw.c if (g_unichar_isprint (c)) c 773 src/editor/editdraw.c p->ch = c; c 784 src/editor/editdraw.c if ((mc_global.utf8_display && g_unichar_isprint (c)) || c 785 src/editor/editdraw.c (!mc_global.utf8_display && is_printable (c))) c 787 src/editor/editdraw.c p->ch = c; c 508 src/editor/editwidget.c int c; c 525 src/editor/editwidget.c c = convert_from_input_c (x_key); c 527 src/editor/editwidget.c if (is_printable (c)) c 530 src/editor/editwidget.c char_for_insertion = c; c 576 src/editor/editwidget.c c = convert_from_utf_to_current (edit->charbuf); c 579 src/editor/editwidget.c char_for_insertion = c; c 36 src/editor/editwidget.h int c; /* color */ c 75 src/editor/etags.c char c = *buf; c 77 src/editor/etags.c while (!(c == '\0' || c == '\n')) c 82 src/editor/etags.c if (c == 0x01) c 86 src/editor/etags.c else if (c == 0x7F) c 94 src/editor/etags.c longdef[nlong++] = c; c 99 src/editor/etags.c if (isdigit (c)) c 105 src/editor/etags.c else if (c == 0x01) c 113 src/editor/etags.c shortdef[nshort++] = c; c 119 src/editor/etags.c if (c == 0x01) c 123 src/editor/etags.c else if (c == '\n') c 131 src/editor/etags.c shortdef[nshort++] = c; c 136 src/editor/etags.c if (c == ',' || c == '\n') c 140 src/editor/etags.c else if (isdigit (c)) c 144 src/editor/etags.c linedef[nline++] = c; c 160 src/editor/etags.c c = *buf; c 99 src/editor/format.c int c; c 101 src/editor/format.c c = edit_buffer_get_byte (buf, p); c 102 src/editor/format.c if (c == '.') c 108 src/editor/format.c if (c == '-') c 115 src/editor/format.c return (option_stop_format_chars != NULL && strchr (option_stop_format_chars, c) != NULL); c 311 src/editor/format.c unsigned char c; c 315 src/editor/format.c c = t[i - 1]; c 316 src/editor/format.c if (c == '\n') c 318 src/editor/format.c if (whitespace (c)) c 362 src/editor/format.c replace_at (WEdit * edit, off_t q, int c) c 366 src/editor/format.c edit_insert_ahead (edit, c); c 408 src/editor/format.c int c = '\0'; c 418 src/editor/format.c if (t[i - 1] == '\n' && c == '\n') c 434 src/editor/format.c else if (c == '\n') c 447 src/editor/format.c c = edit_buffer_get_byte (&edit->buffer, p); c 448 src/editor/format.c if (c != t[i]) c 197 src/editor/syntax.c xx_tolower (const WEdit * edit, int c) c 199 src/editor/syntax.c return edit->is_case_insensitive ? tolower (c) : c; c 246 src/editor/syntax.c int c, d, j; c 251 src/editor/syntax.c c = xx_tolower (edit, edit_buffer_get_byte (&edit->buffer, i - 1)); c 252 src/editor/syntax.c if ((line_start && c != '\n') || (whole_left != NULL && strchr (whole_left, c) != NULL)) c 264 src/editor/syntax.c c = xx_tolower (edit, edit_buffer_get_byte (&edit->buffer, i)); c 265 src/editor/syntax.c if (*p == '\0' && whole_right != NULL && strchr (whole_right, c) == NULL) c 267 src/editor/syntax.c if (c == *p) c 269 src/editor/syntax.c if (c == '\n') c 280 src/editor/syntax.c c = xx_tolower (edit, edit_buffer_get_byte (&edit->buffer, i)); c 281 src/editor/syntax.c if (c == *p) c 287 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 289 src/editor/syntax.c if (whiteness (c) || (whole_right != NULL && strchr (whole_right, c) == NULL)) c 307 src/editor/syntax.c c = -1; c 310 src/editor/syntax.c d = c; c 311 src/editor/syntax.c c = xx_tolower (edit, edit_buffer_get_byte (&edit->buffer, i)); c 313 src/editor/syntax.c if (c == p[j]) c 330 src/editor/syntax.c c = xx_tolower (edit, edit_buffer_get_byte (&edit->buffer, i)); c 332 src/editor/syntax.c if (c == *p) c 366 src/editor/syntax.c int c; c 374 src/editor/syntax.c c = xx_tolower (edit, edit_buffer_get_byte (&edit->buffer, i)); c 375 src/editor/syntax.c if (c == 0) c 398 src/editor/syntax.c if (r->first_right == c && (edit->rule.border & RULE_ON_RIGHT_BORDER) == 0 c 434 src/editor/syntax.c while (*(p = xx_strchr (edit, (const unsigned char *) p + 1, c)) != '\0') c 489 src/editor/syntax.c if (r->first_right == c) c 514 src/editor/syntax.c if (r->first_left == c) c 546 src/editor/syntax.c while (*(p = xx_strchr (edit, (const unsigned char *) p + 1, c)) != '\0') c 660 src/editor/syntax.c int c; c 662 src/editor/syntax.c c = fgetc (f); c 663 src/editor/syntax.c if (c == EOF) c 676 src/editor/syntax.c if (c == '\n') c 678 src/editor/syntax.c if (c == '\r') c 680 src/editor/syntax.c c = fgetc (f); c 681 src/editor/syntax.c if (c == '\n') c 684 src/editor/syntax.c ungetc (c, f); c 688 src/editor/syntax.c g_string_append_c (p, c); c 931 src/editor/syntax.c context_rule_t *c = NULL; c 1036 src/editor/syntax.c c = g_new0 (context_rule_t, 1); c 1037 src/editor/syntax.c g_ptr_array_add (edit->rules, c); c 1038 src/editor/syntax.c c->left = g_strdup (" "); c 1039 src/editor/syntax.c c->right = g_strdup (" "); c 1044 src/editor/syntax.c c = g_new0 (context_rule_t, 1); c 1045 src/editor/syntax.c g_ptr_array_add (edit->rules, c); c 1049 src/editor/syntax.c c->between_delimiters = TRUE; c 1055 src/editor/syntax.c c->whole_word_chars_left = g_strdup (whole_left); c 1056 src/editor/syntax.c c->whole_word_chars_right = g_strdup (whole_right); c 1061 src/editor/syntax.c c->whole_word_chars_left = g_strdup (whole_left); c 1066 src/editor/syntax.c c->whole_word_chars_right = g_strdup (whole_right); c 1072 src/editor/syntax.c c->line_start_left = TRUE; c 1075 src/editor/syntax.c c->left = g_strdup (*a++); c 1080 src/editor/syntax.c c->line_start_right = TRUE; c 1083 src/editor/syntax.c c->right = g_strdup (*a++); c 1084 src/editor/syntax.c c->first_left = *c->left; c 1085 src/editor/syntax.c c->first_right = *c->right; c 1087 src/editor/syntax.c c->keyword = g_ptr_array_new (); c 1089 src/editor/syntax.c g_ptr_array_add (c->keyword, k); c 1110 src/editor/syntax.c if (c == NULL) c 1115 src/editor/syntax.c c->spelling = TRUE; c 1232 src/editor/syntax.c c = CONTEXT_RULE (g_ptr_array_index (edit->rules, i)); c 1235 src/editor/syntax.c for (j = 1; j < c->keyword->len; j++) c 1239 src/editor/syntax.c k = SYNTAX_KEYWORD (g_ptr_array_index (c->keyword, j)); c 1243 src/editor/syntax.c c->keyword_first_chars = g_strndup (first_chars->str, first_chars->len); c 119 src/filemanager/cd.c char c; c 134 src/filemanager/cd.c c = *s; c 137 src/filemanager/cd.c *s = c; c 178 src/filemanager/cd.c char c; c 182 src/filemanager/cd.c c = (p == NULL) ? '\0' : ':'; c 184 src/filemanager/cd.c while (!result && c == ':') c 191 src/filemanager/cd.c c = *s; c 201 src/filemanager/cd.c *s = c; c 491 src/filemanager/chattr.c WCheck *c = CHECK (l->data); c 496 src/filemanager/chattr.c check_set_text (c, btext); c 497 src/filemanager/chattr.c c->state = check_attr[m].state; c 782 src/filemanager/ext.c char *p, *q, *r, c; c 905 src/filemanager/ext.c c = *q; c 978 src/filemanager/ext.c *q = c; c 991 src/filemanager/ext.c c = *r; c 1005 src/filemanager/ext.c *r = c; c 1015 src/filemanager/ext.c *r = c; c 1018 src/filemanager/ext.c *r = c; c 748 src/filemanager/filegui.c int c; c 759 src/filemanager/filegui.c c = tty_get_event (&event, FALSE, ctx->suspended); c 760 src/filemanager/filegui.c if (c == EV_NONE) c 766 src/filemanager/filegui.c dlg_process_event (ui->op_dlg, c, &event); c 963 src/filemanager/find.c int c; c 966 src/filemanager/find.c c = tty_get_event (&event, GROUP (h)->mouse_status == MOU_REPEAT, FALSE); c 967 src/filemanager/find.c if (c != EV_NONE) c 969 src/filemanager/find.c dlg_process_event (h, c, &event); c 1233 src/filemanager/hotlist.c int c; c 1235 src/filemanager/hotlist.c while ((c = getc (hotlist_file)) != EOF && c != '\n' && g_ascii_isspace (c)) c 1237 src/filemanager/hotlist.c return c; c 1245 src/filemanager/hotlist.c int c, ret = 0; c 1253 src/filemanager/hotlist.c c = hot_skip_blanks (); c 1254 src/filemanager/hotlist.c switch (c) c 1263 src/filemanager/hotlist.c while ((c = getc (hotlist_file)) != EOF && c != '\n') c 1264 src/filemanager/hotlist.c g_string_append_c (tkn_buf, c); c 1268 src/filemanager/hotlist.c while ((c = getc (hotlist_file)) != EOF && c != '"') c 1270 src/filemanager/hotlist.c if (c == '\\') c 1272 src/filemanager/hotlist.c c = getc (hotlist_file); c 1273 src/filemanager/hotlist.c if (c == EOF) c 1279 src/filemanager/hotlist.c g_string_append_c (tkn_buf, c == '\n' ? ' ' : c); c 1281 src/filemanager/hotlist.c ret = (c == EOF) ? TKN_EOF : TKN_STRING; c 1284 src/filemanager/hotlist.c c = getc (hotlist_file); c 1285 src/filemanager/hotlist.c if (c == EOF) c 1290 src/filemanager/hotlist.c if (c == '\n') c 1298 src/filemanager/hotlist.c g_string_append_c (tkn_buf, g_ascii_toupper (c)); c 1300 src/filemanager/hotlist.c while ((c = fgetc (hotlist_file)) != EOF && (g_ascii_isalnum (c) || !isascii (c))); c 1301 src/filemanager/hotlist.c if (c != EOF) c 1302 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 450 src/help.c int col, line, c; c 480 src/help.c c = (unsigned char) buff[0]; c 481 src/help.c switch (c) c 539 src/help.c help_print_word (h, word, &col, &line, c == ' '); c 540 src/help.c if (c == '\t') c 561 src/help.c if ((c == ' ') || (c == '.')) c 562 src/help.c tty_print_char (c); c 565 src/help.c tty_print_char (acs_map[c]); c 568 src/help.c c); c 169 src/learn.c learn_check_key (int c) c 175 src/learn.c if (key_name_conv_tab[i].code != c || learnkeys[i].ok) c 207 src/learn.c switch (c) c 227 src/learn.c return (c < 255 && g_ascii_isalnum (c)); c 1240 src/subshell/common.c int c; c 1242 src/subshell/common.c for (c = 0; c < n - su; c++) c 1243 src/subshell/common.c g_string_append_printf (ret, "\\0%03o", (unsigned char) su[c]); c 194 src/textconf.c #define PRINTF(a, b, c) \ c 195 src/textconf.c (void) printf ("\t%-15s %s/%s\n", a, b, c) c 196 src/textconf.c #define PRINTF2(a, b, c) \ c 197 src/textconf.c (void) printf ("\t%-15s %s%s\n", a, b, c) c 745 src/usermenu.c expand_format (const WEdit * edit_widget, char c, gboolean do_quote) c 757 src/usermenu.c if (c == '%') c 769 src/usermenu.c if (g_ascii_islower ((gchar) c)) c 798 src/usermenu.c c_lc = g_ascii_tolower ((gchar) c); c 936 src/usermenu.c result[1] = c; c 23 src/usermenu.h char *expand_format (const WEdit * 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 760 src/vfs/ftpfs/ftpfs.c int c; c 762 src/vfs/ftpfs/ftpfs.c while ((c = fgetc (npf)) != EOF && c != '\n') c 1109 src/vfs/ftpfs/ftpfs.c char *c; c 1117 src/vfs/ftpfs/ftpfs.c for (c = reply_str + 4; *c != '\0' && !isdigit ((unsigned char) *c); c++) c 1120 src/vfs/ftpfs/ftpfs.c if (*c == '\0' || !isdigit ((unsigned char) *c)) c 1124 src/vfs/ftpfs/ftpfs.c if (sscanf (c, "%d,%d,%d,%d,%d,%d", &xa, &xb, &xc, &xd, &xe, &xf) != 6) c 1147 src/vfs/ftpfs/ftpfs.c char *c; c 1154 src/vfs/ftpfs/ftpfs.c c = strchr (reply_str, '|'); c 1155 src/vfs/ftpfs/ftpfs.c if (c == NULL) c 1157 src/vfs/ftpfs/ftpfs.c if (strlen (c) > 3) c 1158 src/vfs/ftpfs/ftpfs.c c += 3; c 1162 src/vfs/ftpfs/ftpfs.c port = atoi (c); c 452 src/vfs/sfs/sfs.c char *c, *semi = NULL; c 458 src/vfs/sfs/sfs.c for (c = key; *c != '\0'; c++) c 459 src/vfs/sfs/sfs.c if (*c == ':' || IS_PATH_SEP (*c)) c 461 src/vfs/sfs/sfs.c semi = c; c 462 src/vfs/sfs/sfs.c if (IS_PATH_SEP (*c)) c 464 src/vfs/sfs/sfs.c *c = '\0'; c 477 src/vfs/sfs/sfs.c for (c = semi + 1; *c != '\0' && !whitespace (*c); c++) c 478 src/vfs/sfs/sfs.c switch (*c) c 490 src/vfs/sfs/sfs.c fprintf (stderr, _("Warning: Invalid flag %c in %s:\n%s\n"), *c, "sfs.ini", key); c 493 src/vfs/sfs/sfs.c if (*c == '\0') c 496 src/vfs/sfs/sfs.c c++; c 498 src/vfs/sfs/sfs.c semi = strchr (c, '\n'); c 503 src/vfs/sfs/sfs.c sfs_info[sfs_no].command = g_strdup (c); c 37 src/vfs/smbfs/helpers/include/charset.h #define toupper(c) (upper_char_map[(c&0xff)] & 0xff) c 38 src/vfs/smbfs/helpers/include/charset.h #define tolower(c) (lower_char_map[(c&0xff)] & 0xff) c 39 src/vfs/smbfs/helpers/include/charset.h #define isupper(c) ((c&0xff) != tolower(c&0xff)) c 40 src/vfs/smbfs/helpers/include/charset.h #define islower(c) ((c&0xff) != toupper(c&0xff)) c 41 src/vfs/smbfs/helpers/include/charset.h #define isdoschar(c) (dos_char_map[(c&0xff)] != 0) c 42 src/vfs/smbfs/helpers/include/charset.h #define isspace(c) ((c)==' ' || (c) == '\t') c 46 src/vfs/smbfs/helpers/include/charset.h #define issafe(c) (isalnum((c&0xff)) || strchr("-._",c)) c 10 src/vfs/smbfs/helpers/include/kanji.h #define is_shift_jis(c) \ c 11 src/vfs/smbfs/helpers/include/kanji.h ((0x81 <= ((unsigned char) (c)) && ((unsigned char) (c)) <= 0x9f) \ c 12 src/vfs/smbfs/helpers/include/kanji.h || (0xe0 <= ((unsigned char) (c)) && ((unsigned char) (c)) <= 0xef)) c 13 src/vfs/smbfs/helpers/include/kanji.h #define is_shift_jis2(c) \ c 14 src/vfs/smbfs/helpers/include/kanji.h (0x40 <= ((unsigned char) (c)) && ((unsigned char) (c)) <= 0xfc \ c 15 src/vfs/smbfs/helpers/include/kanji.h && ((unsigned char) (c)) != 0x7f) c 16 src/vfs/smbfs/helpers/include/kanji.h #define is_kana(c) ((0xa0 <= ((unsigned char) (c)) && ((unsigned char) (c)) <= 0xdf)) c 19 src/vfs/smbfs/helpers/include/kanji.h #define is_sj_upper2(c) \ c 20 src/vfs/smbfs/helpers/include/kanji.h ((0x60 <= (unsigned char) (c)) && ((unsigned char) (c) <= 0x79)) c 21 src/vfs/smbfs/helpers/include/kanji.h #define is_sj_lower2(c) \ c 22 src/vfs/smbfs/helpers/include/kanji.h ((0x81 <= (unsigned char) (c)) && ((unsigned char) (c) <= 0x9A)) c 24 src/vfs/smbfs/helpers/include/kanji.h #define is_sj_alph(c) (sjis_alph == (unsigned char) (c)) c 27 src/vfs/smbfs/helpers/include/kanji.h #define sj_toupper2(c) \ c 28 src/vfs/smbfs/helpers/include/kanji.h (is_sj_lower2 (c) ? ((int) ((unsigned char) (c) - 0x81 + 0x60)) : \ c 29 src/vfs/smbfs/helpers/include/kanji.h ((int) (unsigned char) (c))) c 30 src/vfs/smbfs/helpers/include/kanji.h #define sj_tolower2(c) \ c 31 src/vfs/smbfs/helpers/include/kanji.h (is_sj_upper2 (c) ? ((int) ((unsigned char) (c) - 0x60 + 0x81)) : \ c 32 src/vfs/smbfs/helpers/include/kanji.h ((int) (unsigned char) (c))) c 37 src/vfs/smbfs/helpers/include/kanji.h #define is_euc_kana(c) (((unsigned char) (c)) == euc_kana) c 38 src/vfs/smbfs/helpers/include/kanji.h #define is_euc(c) (0xa0 < ((unsigned char) (c)) && ((unsigned char) (c)) < 0xff) c 57 src/vfs/smbfs/helpers/include/kanji.h #define is_esc(c) (((unsigned char) (c)) == jis_esc) c 58 src/vfs/smbfs/helpers/include/kanji.h #define is_so1(c) (((unsigned char) (c)) == jis_so1) c 59 src/vfs/smbfs/helpers/include/kanji.h #define is_so2(c) (((unsigned char) (c)) == jis_so2 || ((unsigned char) (c)) == '@') c 60 src/vfs/smbfs/helpers/include/kanji.h #define is_si1(c) (((unsigned char) (c)) == jis_si1) c 61 src/vfs/smbfs/helpers/include/kanji.h #define is_si2(c) (((unsigned char) (c)) == jis_si2 || ((unsigned char) (c)) == 'B' \ c 62 src/vfs/smbfs/helpers/include/kanji.h || ((unsigned char) (c)) == 'H') c 63 src/vfs/smbfs/helpers/include/kanji.h #define is_so(c) (((unsigned char) (c)) == jis_so) c 64 src/vfs/smbfs/helpers/include/kanji.h #define is_si(c) (((unsigned char) (c)) == jis_si) c 67 src/vfs/smbfs/helpers/include/kanji.h #define is_juk1(c) (((unsigned char) (c)) == junet_kana1) c 68 src/vfs/smbfs/helpers/include/kanji.h #define is_juk2(c) (((unsigned char) (c)) == junet_kana2) c 86 src/vfs/smbfs/helpers/include/kanji.h #define is_hangul(c) ((0x81 <= ((unsigned char) (c)) && ((unsigned char) (c)) <= 0xfd)) c 89 src/vfs/smbfs/helpers/include/kanji.h #define is_big5_c1(c) ((0xa1 <= ((unsigned char) (c)) && ((unsigned char) (c)) <= 0xf9)) c 92 src/vfs/smbfs/helpers/include/kanji.h #define is_simpch_c1(c) ((0xa1 <= ((unsigned char) (c)) && ((unsigned char) (c)) <= 0xf7)) c 121 src/vfs/smbfs/helpers/include/kanji.h extern char *(*multibyte_strchr) (const char *s, int c); c 122 src/vfs/smbfs/helpers/include/kanji.h extern char *(*multibyte_strrchr) (const char *s, int c); c 127 src/vfs/smbfs/helpers/include/kanji.h extern BOOL (*is_multibyte_char) (char c); c 128 src/vfs/smbfs/helpers/include/kanji.h extern int (*_skip_multibyte_char) (char c); c 130 src/vfs/smbfs/helpers/include/kanji.h #define strchr(s1, c) ((*multibyte_strchr)((s1), (c))) c 131 src/vfs/smbfs/helpers/include/kanji.h #define strrchr(s1, c) ((*multibyte_strrchr)((s1), (c))) c 136 src/vfs/smbfs/helpers/include/kanji.h #define skip_multibyte_char(c) ((*_skip_multibyte_char)((c))) c 103 src/vfs/smbfs/helpers/include/proto.h char *Atoic (char *p, int *n, char *c); c 226 src/vfs/smbfs/helpers/include/proto.h size_t count_chars (const char *s, char c); c 231 src/vfs/smbfs/helpers/include/proto.h char *strncpyn (char *dest, const char *src, size_t n, char c); c 904 src/vfs/smbfs/helpers/include/smb.h #define FNUM_OK(fsp,c) (OPEN_FSP(fsp) && (c)==(fsp)->conn) c 1534 src/vfs/smbfs/helpers/include/smb.h #define CACHE_ERROR(w,c,e) ((w)->wr_errclass = (c), (w)->wr_error = (e), \ c 181 src/vfs/smbfs/helpers/lib/charset.c char c = (char) i; c 182 src/vfs/smbfs/helpers/lib/charset.c upper_char_map[i] = lower_char_map[i] = c; c 188 src/vfs/smbfs/helpers/lib/charset.c if (isupper ((int) c)) c 189 src/vfs/smbfs/helpers/lib/charset.c lower_char_map[i] = tolower (c); c 190 src/vfs/smbfs/helpers/lib/charset.c if (islower ((int) c)) c 191 src/vfs/smbfs/helpers/lib/charset.c upper_char_map[i] = toupper (c); c 186 src/vfs/smbfs/helpers/lib/kanji.c sj_strchr (const char *s, int c) c 190 src/vfs/smbfs/helpers/lib/kanji.c if (*s == c) c 210 src/vfs/smbfs/helpers/lib/kanji.c sj_strrchr (const char *s, int c) c 216 src/vfs/smbfs/helpers/lib/kanji.c if (*s == c) c 237 src/vfs/smbfs/helpers/lib/kanji.c skip_kanji_multibyte_char (char c) c 239 src/vfs/smbfs/helpers/lib/kanji.c if (is_shift_jis (c)) c 243 src/vfs/smbfs/helpers/lib/kanji.c else if (is_kana (c)) c 255 src/vfs/smbfs/helpers/lib/kanji.c is_kanji_multibyte_char_1 (char c) c 257 src/vfs/smbfs/helpers/lib/kanji.c return is_shift_jis (c); c 273 src/vfs/smbfs/helpers/lib/kanji.c hangul_is_multibyte_char_1 (char c) c 275 src/vfs/smbfs/helpers/lib/kanji.c return is_hangul (c); c 283 src/vfs/smbfs/helpers/lib/kanji.c big5_is_multibyte_char_1 (char c) c 285 src/vfs/smbfs/helpers/lib/kanji.c return is_big5_c1 (c); c 293 src/vfs/smbfs/helpers/lib/kanji.c simpch_is_multibyte_char_1 (char c) c 295 src/vfs/smbfs/helpers/lib/kanji.c return is_simpch_c1 (c); c 387 src/vfs/smbfs/helpers/lib/kanji.c generic_multibyte_strchr (const char *s, int c) c 391 src/vfs/smbfs/helpers/lib/kanji.c if (*s == c) c 411 src/vfs/smbfs/helpers/lib/kanji.c generic_multibyte_strrchr (const char *s, int c) c 417 src/vfs/smbfs/helpers/lib/kanji.c if (*s == c) c 438 src/vfs/smbfs/helpers/lib/kanji.c skip_generic_multibyte_char (char c) c 440 src/vfs/smbfs/helpers/lib/kanji.c if ((*is_multibyte_char_1) (c)) c 1409 src/vfs/smbfs/helpers/lib/kanji.c skip_non_multibyte_char (char c) c 1411 src/vfs/smbfs/helpers/lib/kanji.c (void) c; c 1420 src/vfs/smbfs/helpers/lib/kanji.c not_multibyte_char_1 (char c) c 1422 src/vfs/smbfs/helpers/lib/kanji.c (void) c; c 61 src/vfs/smbfs/helpers/lib/md4.c #define ROUND1(a,b,c,d,k,s) a = lshift(a + F(b,c,d) + X[k], s) c 62 src/vfs/smbfs/helpers/lib/md4.c #define ROUND2(a,b,c,d,k,s) a = lshift(a + G(b,c,d) + X[k] + (uint32)0x5A827999,s) c 63 src/vfs/smbfs/helpers/lib/md4.c #define ROUND3(a,b,c,d,k,s) a = lshift(a + H(b,c,d) + X[k] + (uint32)0x6ED9EBA1,s) c 418 src/vfs/smbfs/helpers/lib/username.c char c = s[i]; c 419 src/vfs/smbfs/helpers/lib/username.c if (!islower (c)) c 421 src/vfs/smbfs/helpers/lib/username.c s[i] = toupper (c); c 425 src/vfs/smbfs/helpers/lib/username.c s[i] = c; c 153 src/vfs/smbfs/helpers/lib/util.c Atoic (char *p, int *n, char *c) c 168 src/vfs/smbfs/helpers/lib/util.c if (strchr (c, *p) == NULL) c 170 src/vfs/smbfs/helpers/lib/util.c DEBUG (5, ("Atoic: no separator characters (%s) not found\n", c)); c 312 src/vfs/smbfs/helpers/lib/util.c int c; c 332 src/vfs/smbfs/helpers/lib/util.c c = toupper (buf[i]); c 333 src/vfs/smbfs/helpers/lib/util.c p[i * 2] = ((c >> 4) & 0x000F) + 'A'; c 334 src/vfs/smbfs/helpers/lib/util.c p[(i * 2) + 1] = (c & 0x000F) + 'A'; c 1132 src/vfs/smbfs/helpers/lib/util.c unsigned char c = *(unsigned char *) (buf + ofs); c 1134 src/vfs/smbfs/helpers/lib/util.c if ((c & 0xC0) == 0xC0) c 1738 src/vfs/smbfs/helpers/lib/util.c char c = 0; c 1762 src/vfs/smbfs/helpers/lib/util.c if (write (fd, &c, 1) != 1) c 2975 src/vfs/smbfs/helpers/lib/util.c int c; c 2980 src/vfs/smbfs/helpers/lib/util.c c = *s; c 2981 src/vfs/smbfs/helpers/lib/util.c res ^= (c << (i % 15)) ^ (c >> (15 - (i % 15))); c 207 src/vfs/smbfs/helpers/lib/util_file.c unsigned char c; c 238 src/vfs/smbfs/helpers/lib/util_file.c c = '\0'; c 241 src/vfs/smbfs/helpers/lib/util_file.c c = fgetc (fp); c 242 src/vfs/smbfs/helpers/lib/util_file.c if (c == '\n') c 290 src/vfs/smbfs/helpers/lib/util_file.c int c; c 309 src/vfs/smbfs/helpers/lib/util_file.c c = getc (f); c 310 src/vfs/smbfs/helpers/lib/util_file.c switch (c) c 335 src/vfs/smbfs/helpers/lib/util_file.c s[len++] = c; c 743 src/vfs/smbfs/helpers/lib/util_str.c count_chars (const char *s, char c) c 766 src/vfs/smbfs/helpers/lib/util_str.c if (*s == c) c 782 src/vfs/smbfs/helpers/lib/util_str.c if (*s == c) c 910 src/vfs/smbfs/helpers/lib/util_str.c strncpyn (char *dest, const char *src, size_t n, char c) c 915 src/vfs/smbfs/helpers/lib/util_str.c p = strchr (src, c); c 918 src/vfs/smbfs/helpers/lib/util_str.c DEBUG (5, ("strncpyn: separator character (%c) not found\n", c)); c 203 src/vfs/smbfs/helpers/libsmb/smbdes.c char c[28]; c 214 src/vfs/smbfs/helpers/libsmb/smbdes.c c[i] = pk1[i]; c 220 src/vfs/smbfs/helpers/libsmb/smbdes.c lshift (c, sc[i], 28); c 223 src/vfs/smbfs/helpers/libsmb/smbdes.c concat (cd, c, d, 28, 28); c 134 src/vfs/smbfs/helpers/param/params.c int c; c 136 src/vfs/smbfs/helpers/param/params.c for (c = getc (InFile); isspace (c) && ('\n' != c); c = getc (InFile)) c 138 src/vfs/smbfs/helpers/param/params.c return (c); c 160 src/vfs/smbfs/helpers/param/params.c int c; c 162 src/vfs/smbfs/helpers/param/params.c for (c = getc (InFile); ('\n' != c) && (EOF != c) && (c > 0); c = getc (InFile)) c 164 src/vfs/smbfs/helpers/param/params.c return (c); c 208 src/vfs/smbfs/helpers/param/params.c int c; c 219 src/vfs/smbfs/helpers/param/params.c c = EatWhitespace (InFile); /* We've already got the '['. Scan */ c 222 src/vfs/smbfs/helpers/param/params.c while ((EOF != c) && (c > 0)) c 238 src/vfs/smbfs/helpers/param/params.c switch (c) c 261 src/vfs/smbfs/helpers/param/params.c c = getc (InFile); /* Continue with next line. */ c 265 src/vfs/smbfs/helpers/param/params.c if (isspace (c)) /* One space per whitespace region. */ c 269 src/vfs/smbfs/helpers/param/params.c c = EatWhitespace (InFile); c 273 src/vfs/smbfs/helpers/param/params.c bufr[i++] = c; c 275 src/vfs/smbfs/helpers/param/params.c c = getc (InFile); c 286 src/vfs/smbfs/helpers/param/params.c Parameter (FILE * InFile, BOOL (*pfunc) (const char *, const char *), int c) c 331 src/vfs/smbfs/helpers/param/params.c switch (c) c 355 src/vfs/smbfs/helpers/param/params.c c = getc (InFile); /* Read past eoln. */ c 365 src/vfs/smbfs/helpers/param/params.c if (isspace (c)) /* One ' ' per whitespace region. */ c 369 src/vfs/smbfs/helpers/param/params.c c = EatWhitespace (InFile); c 373 src/vfs/smbfs/helpers/param/params.c bufr[i++] = c; c 375 src/vfs/smbfs/helpers/param/params.c c = getc (InFile); c 381 src/vfs/smbfs/helpers/param/params.c c = EatWhitespace (InFile); /* Again, trim leading whitespace. */ c 382 src/vfs/smbfs/helpers/param/params.c while ((EOF != c) && (c > 0)) c 396 src/vfs/smbfs/helpers/param/params.c switch (c) c 399 src/vfs/smbfs/helpers/param/params.c c = getc (InFile); /* version called fgets_slash() which also */ c 405 src/vfs/smbfs/helpers/param/params.c c = 0; c 410 src/vfs/smbfs/helpers/param/params.c c = getc (InFile); c 415 src/vfs/smbfs/helpers/param/params.c bufr[i++] = c; /* not advance <end>. This allows trimming */ c 416 src/vfs/smbfs/helpers/param/params.c if (!isspace (c)) /* of whitespace at the end of the line. */ c 418 src/vfs/smbfs/helpers/param/params.c c = getc (InFile); c 451 src/vfs/smbfs/helpers/param/params.c int c; c 453 src/vfs/smbfs/helpers/param/params.c c = EatWhitespace (InFile); c 454 src/vfs/smbfs/helpers/param/params.c while ((EOF != c) && (c > 0)) c 456 src/vfs/smbfs/helpers/param/params.c switch (c) c 459 src/vfs/smbfs/helpers/param/params.c c = EatWhitespace (InFile); c 464 src/vfs/smbfs/helpers/param/params.c c = EatComment (InFile); c 470 src/vfs/smbfs/helpers/param/params.c c = EatWhitespace (InFile); c 474 src/vfs/smbfs/helpers/param/params.c c = EatWhitespace (InFile); c 478 src/vfs/smbfs/helpers/param/params.c if (!Parameter (InFile, pfunc, c)) c 480 src/vfs/smbfs/helpers/param/params.c c = EatWhitespace (InFile); c 1053 src/vfs/smbfs/smbfs.c struct cli_state *c; c 1077 src/vfs/smbfs/smbfs.c if (!(c = cli_initialise (NULL))) c 1083 src/vfs/smbfs/smbfs.c pwd_init (&(c->pwd)); /* should be moved into cli_initialise()? */ c 1084 src/vfs/smbfs/smbfs.c pwd_set_cleartext (&(c->pwd), current_bucket->password); c 1086 src/vfs/smbfs/smbfs.c if ((cli_set_port (c, current_bucket->port) == 0) || !cli_connect (c, server, &ip)) c 1092 src/vfs/smbfs/smbfs.c if (!cli_session_request (c, &calling, &called)) c 1094 src/vfs/smbfs/smbfs.c my_errno = cli_error (c, NULL, &err, NULL); c 1096 src/vfs/smbfs/smbfs.c cli_shutdown (c); c 1107 src/vfs/smbfs/smbfs.c if (!cli_negprot (c)) c 1113 src/vfs/smbfs/smbfs.c if (!cli_session_setup (c, current_bucket->user, c 1118 src/vfs/smbfs/smbfs.c DEBUG (1, ("session setup failed: %s\n", cli_errstr (c))); c 1123 src/vfs/smbfs/smbfs.c if (*c->server_domain || *c->server_os || *c->server_type) c 1125 src/vfs/smbfs/smbfs.c c->server_domain, c->server_os, c->server_type)); c 1129 src/vfs/smbfs/smbfs.c if (!cli_send_tconX (c, share, "?????", c 1132 src/vfs/smbfs/smbfs.c DEBUG (1, ("%s: tree connect failed: %s\n", share, cli_errstr (c))); c 1139 src/vfs/smbfs/smbfs.c return c; c 1142 src/vfs/smbfs/smbfs.c my_errno = cli_error (c, NULL, &err, NULL); c 1143 src/vfs/smbfs/smbfs.c cli_shutdown (c); c 134 src/vfs/tar/tar.c #define isodigit(c) ( ((c) >= '0') && ((c) <= '7') ) c 622 src/viewer/actions_cmd.c if (c == 't') c 201 src/viewer/ascii.c mcview_wcwidth (const WView * view, int c) c 206 src/viewer/ascii.c if (g_unichar_iswide (c)) c 208 src/viewer/ascii.c if (g_unichar_iszerowidth (c)) c 213 src/viewer/ascii.c (void) c; c 221 src/viewer/ascii.c mcview_ismark (const WView * view, int c) c 225 src/viewer/ascii.c return g_unichar_ismark (c); c 228 src/viewer/ascii.c (void) c; c 237 src/viewer/ascii.c mcview_is_non_spacing_mark (const WView * view, int c) c 244 src/viewer/ascii.c type = g_unichar_type (c); c 250 src/viewer/ascii.c (void) c; c 259 src/viewer/ascii.c mcview_is_spacing_mark (const WView * view, int c) c 263 src/viewer/ascii.c return g_unichar_type (c) == G_UNICODE_SPACING_MARK; c 266 src/viewer/ascii.c (void) c; c 275 src/viewer/ascii.c mcview_isprint (const WView * view, int c) c 279 src/viewer/ascii.c c = convert_from_8bit_to_utf_c ((unsigned char) c, view->converter); c 280 src/viewer/ascii.c return g_unichar_isprint (c); c 284 src/viewer/ascii.c return is_printable (c); c 291 src/viewer/ascii.c mcview_char_display (const WView * view, int c, char *s) c 297 src/viewer/ascii.c c = convert_from_8bit_to_utf_c ((unsigned char) c, view->converter); c 298 src/viewer/ascii.c if (!g_unichar_isprint (c)) c 299 src/viewer/ascii.c c = '.'; c 300 src/viewer/ascii.c return g_unichar_to_utf8 (c, s); c 304 src/viewer/ascii.c if (g_unichar_iswide (c)) c 309 src/viewer/ascii.c if (g_unichar_iszerowidth (c)) c 312 src/viewer/ascii.c c = convert_from_utf_to_current_c (c, view->converter); c 317 src/viewer/ascii.c c = convert_to_display_c (c); c 323 src/viewer/ascii.c if (!is_printable (c)) c 324 src/viewer/ascii.c c = '.'; c 325 src/viewer/ascii.c *s = c; c 344 src/viewer/ascii.c mcview_get_next_char (WView * view, mcview_state_machine_t * state, int *c) c 355 src/viewer/ascii.c if (!mcview_get_utf (view, state->offset, c, &char_length)) c 365 src/viewer/ascii.c if (!mcview_get_byte (view, state->offset, c)) c 391 src/viewer/ascii.c mcview_get_next_maybe_nroff_char (WView * view, mcview_state_machine_t * state, int *c, int *color) c 400 src/viewer/ascii.c return mcview_get_next_char (view, state, c); c 402 src/viewer/ascii.c if (!mcview_get_next_char (view, state, c)) c 405 src/viewer/ascii.c if (!mcview_isprint (view, *c)) c 420 src/viewer/ascii.c if (*c == '_' && c3 == '_') c 427 src/viewer/ascii.c else if (*c == c3) c 434 src/viewer/ascii.c else if (*c == '_') c 436 src/viewer/ascii.c *c = c3; c 338 src/viewer/coord_cache.c int c; c 340 src/viewer/coord_cache.c if (!mcview_get_byte (view, current.cc_offset, &c)) c 363 src/viewer/coord_cache.c if (c == '\r') c 391 src/viewer/coord_cache.c else if (c == '\t') c 397 src/viewer/coord_cache.c else if (c == '\n') c 427 src/viewer/coord_cache.c if (nroff_state == NROFF_START && c != '\r') c 378 src/viewer/display.c screen_dimen c; c 384 src/viewer/display.c for (c = 0; c < width; c++) c 386 src/viewer/display.c cl = view->dpy_text_column + c; c 389 src/viewer/display.c widget_gotoyx (view, top + line_row, left + c); c 398 src/viewer/display.c widget_gotoyx (view, top + nums_row, left + c - 1); c 172 src/viewer/hex.c int c; c 250 src/viewer/hex.c if (!mcview_get_byte (view, from, &c)) c 267 src/viewer/hex.c c = curr->value; c 282 src/viewer/hex.c tty_print_char (hex_char[c / 16]); c 287 src/viewer/hex.c tty_print_char (hex_char[c % 16]); c 331 src/viewer/hex.c c = convert_from_8bit_to_utf_c ((unsigned char) c, view->converter); c 333 src/viewer/hex.c if (!g_unichar_isprint (c)) c 334 src/viewer/hex.c c = '.'; c 342 src/viewer/hex.c c = convert_to_display_c (c); c 345 src/viewer/hex.c if (!is_printable (c)) c 346 src/viewer/hex.c c = '.'; c 358 src/viewer/hex.c tty_print_char (c); c 134 src/viewer/inlines.h int c; c 135 src/viewer/inlines.h while (offset >= 2 * backspaces && mcview_get_byte (view, offset - 2 * backspaces, &c) c 136 src/viewer/inlines.h && c == '\b') c 314 src/viewer/lib.c int c; c 321 src/viewer/lib.c if (!mcview_get_byte (view, current, &c)) c 323 src/viewer/lib.c if (c == '\n') c 325 src/viewer/lib.c if (!mcview_get_byte (view, current - 1, &c)) c 327 src/viewer/lib.c if (c == '\r') c 332 src/viewer/lib.c if (!mcview_get_byte (view, current - 1, &c)) c 334 src/viewer/lib.c if (c == '\r' || c == '\n') c 349 src/viewer/lib.c int c, prev_ch = 0; c 356 src/viewer/lib.c if (!mcview_get_byte (view, current, &c)) c 358 src/viewer/lib.c if (c == '\n') c 368 src/viewer/lib.c prev_ch = c; c 63 src/viewer/nroff.c int c = 0; c 68 src/viewer/nroff.c if (!mcview_get_utf (nroff->view, nroff_index, &c, &nroff->char_length)) c 72 src/viewer/nroff.c if (!mcview_get_byte (nroff->view, nroff_index, &c) || !g_ascii_isprint (c)) c 80 src/viewer/nroff.c if (!mcview_get_byte (nroff->view, nroff_index, &c)) c 84 src/viewer/nroff.c *ret_val = c; c 86 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 fail_unless( c == d, "skip_len(%d) != %d", c, d ); \ c 38 tests/lib/strutil/str_verscmp.c static char const c[] = "B007502357019.GBP.CORP.COM"; c 90 tests/lib/strutil/str_verscmp.c { b, c, -1 }, c 91 tests/lib/strutil/str_verscmp.c { a, c, -1 }, c 93 tests/lib/strutil/str_verscmp.c { c, b, 1 }, c 94 tests/lib/strutil/str_verscmp.c { c, a, 1 }