ch                188 lib/charsets.c     char ch = UNKNCHAR;
ch                193 lib/charsets.c         ch = tmp_buff[0];
ch                195 lib/charsets.c     return ch;
ch                333 lib/charsets.c         unsigned char ch;
ch                334 lib/charsets.c         ch = translate_character (cd, i);
ch                335 lib/charsets.c         conv_input[i] = (ch == UNKNCHAR) ? i : ch;
ch                413 lib/charsets.c     unsigned char ch = '.';
ch                428 lib/charsets.c             ch = buf_ch[0];
ch                432 lib/charsets.c             ch = '.';
ch                440 lib/charsets.c     return ch;
ch                450 lib/charsets.c     unsigned char ch = '.';
ch                455 lib/charsets.c         return ch;
ch                462 lib/charsets.c         ch = buf_ch[0];
ch                466 lib/charsets.c         ch = '.';
ch                472 lib/charsets.c     return ch;
ch                482 lib/charsets.c     int ch;
ch                494 lib/charsets.c             ch = res >= 0 ? res : buf_ch[0];
ch                500 lib/charsets.c         ch = '.';
ch                504 lib/charsets.c     return ch;
ch                512 lib/charsets.c     int ch = '.';
ch                521 lib/charsets.c         ch = convert_from_8bit_to_utf_c (input_char, conv);
ch                525 lib/charsets.c     return ch;
ch                 56 lib/search/lib.c typedef gboolean (*case_conv_fn) (const char *ch, char **out, size_t * remain);
ch                111 lib/strutil.h        /*I*/ int (*is_valid_char) (const char *ch, size_t size);
ch                118 lib/strutil.h        /*I*/ gboolean (*char_isspace) (const char *ch);
ch                119 lib/strutil.h        /*I*/ gboolean (*char_ispunct) (const char *ch);
ch                120 lib/strutil.h        /*I*/ gboolean (*char_isalnum) (const char *ch);
ch                121 lib/strutil.h        /*I*/ gboolean (*char_isdigit) (const char *ch);
ch                122 lib/strutil.h        /*I*/ gboolean (*char_isprint) (const char *ch);
ch                123 lib/strutil.h        /*I*/ gboolean (*char_iscombiningmark) (const char *ch);
ch                127 lib/strutil.h        /*I*/ gboolean (*char_toupper) (const char *ch, char **out, size_t * remain);
ch                128 lib/strutil.h      gboolean (*char_tolower) (const char *ch, char **out, size_t * remain);
ch                244 lib/strutil.h  estr_t str_translate_char (GIConv conv, const char *ch, size_t ch_size,
ch                258 lib/strutil.h  int str_is_valid_char (const char *ch, size_t size);
ch                327 lib/strutil.h  gboolean str_isspace (const char *ch);
ch                332 lib/strutil.h  gboolean str_ispunct (const char *ch);
ch                337 lib/strutil.h  gboolean str_isalnum (const char *ch);
ch                342 lib/strutil.h  gboolean str_isdigit (const char *ch);
ch                347 lib/strutil.h  gboolean str_isprint (const char *ch);
ch                353 lib/strutil.h  gboolean str_iscombiningmark (const char *ch);
ch                359 lib/strutil.h  gboolean str_toupper (const char *ch, char **out, size_t * remain);
ch                365 lib/strutil.h  gboolean str_tolower (const char *ch, char **out, size_t * remain);
ch                647 lib/strutil/strutil.c str_is_valid_char (const char *ch, size_t size)
ch                649 lib/strutil/strutil.c     return used_class.is_valid_char (ch, size);
ch                727 lib/strutil/strutil.c str_isspace (const char *ch)
ch                729 lib/strutil/strutil.c     return used_class.char_isspace (ch);
ch                735 lib/strutil/strutil.c str_ispunct (const char *ch)
ch                737 lib/strutil/strutil.c     return used_class.char_ispunct (ch);
ch                743 lib/strutil/strutil.c str_isalnum (const char *ch)
ch                745 lib/strutil/strutil.c     return used_class.char_isalnum (ch);
ch                751 lib/strutil/strutil.c str_isdigit (const char *ch)
ch                753 lib/strutil/strutil.c     return used_class.char_isdigit (ch);
ch                759 lib/strutil/strutil.c str_toupper (const char *ch, char **out, size_t * remain)
ch                761 lib/strutil/strutil.c     return used_class.char_toupper (ch, out, remain);
ch                767 lib/strutil/strutil.c str_tolower (const char *ch, char **out, size_t * remain)
ch                769 lib/strutil/strutil.c     return used_class.char_tolower (ch, out, remain);
ch                775 lib/strutil/strutil.c str_isprint (const char *ch)
ch                777 lib/strutil/strutil.c     return used_class.char_isprint (ch);
ch                783 lib/strutil/strutil.c str_iscombiningmark (const char *ch)
ch                785 lib/strutil/strutil.c     return used_class.char_iscombiningmark (ch);
ch                 99 lib/strutil/strutil8bit.c str_8bit_is_valid_char (const char *ch, size_t size)
ch                101 lib/strutil/strutil8bit.c     (void) ch;
ch                 72 lib/strutil/strutilascii.c str_ascii_is_valid_char (const char *ch, size_t size)
ch                 74 lib/strutil/strutilascii.c     (void) ch;
ch                 99 lib/strutil/strutilutf8.c str_utf8_is_valid_char (const char *ch, size_t size)
ch                101 lib/strutil/strutilutf8.c     switch (g_utf8_get_char_validated (ch, size))
ch                222 lib/strutil/strutilutf8.c str_utf8_isprint (const char *ch)
ch                226 lib/strutil/strutilutf8.c     uni = g_utf8_get_char_validated (ch, -1);
ch                233 lib/strutil/strutilutf8.c str_utf8_iscombiningmark (const char *ch)
ch                237 lib/strutil/strutilutf8.c     uni = g_utf8_get_char_validated (ch, -1);
ch                624 lib/strutil/strutilutf8.c utf8_tool_insert_char (struct utf8_tool *tool, char ch)
ch                629 lib/strutil/strutilutf8.c     tool->actual[0] = ch;
ch                 92 lib/strutil/xstrtol.c         unsigned char ch = *q;
ch                 94 lib/strutil/xstrtol.c         while (isspace (ch))
ch                 95 lib/strutil/xstrtol.c             ch = *++q;
ch                 97 lib/strutil/xstrtol.c         if (ch == '-')
ch                241 lib/tty/key.c      char ch;                    /* Holds the matching char code */
ch                678 lib/tty/key.c          p->ch = *seq;
ch               1640 lib/tty/key.c          if (*seq == base->ch)
ch               1832 lib/tty/key.c          if (c == this->ch)
ch                174 lib/tty/tty-ncurses.c mc_tty_normalize_lines_char (const char *ch)
ch                210 lib/tty/tty-ncurses.c     if (ch == NULL)
ch                215 lib/tty/tty-ncurses.c         if (strcmp (ch, lines_codes[res].line) == 0)
ch                219 lib/tty/tty-ncurses.c     str2 = mc_tty_normalize_from_utf8 (ch);
ch                478 lib/tty/tty-ncurses.c tty_draw_hline (int y, int x, int ch, int len)
ch                495 lib/tty/tty-ncurses.c     if ((chtype) ch == ACS_HLINE)
ch                496 lib/tty/tty-ncurses.c         ch = mc_tty_frm[MC_TTY_FRM_HORIZ];
ch                499 lib/tty/tty-ncurses.c     hline (ch, len);
ch                509 lib/tty/tty-ncurses.c tty_draw_vline (int y, int x, int ch, int len)
ch                526 lib/tty/tty-ncurses.c     if ((chtype) ch == ACS_VLINE)
ch                527 lib/tty/tty-ncurses.c         ch = mc_tty_frm[MC_TTY_FRM_VERT];
ch                530 lib/tty/tty-ncurses.c     vline (ch, len);
ch                540 lib/tty/tty-ncurses.c tty_fill_region (int y, int x, int rows, int cols, unsigned char ch)
ch                550 lib/tty/tty-ncurses.c         hline (ch, cols);
ch                540 lib/tty/tty-slang.c tty_draw_hline (int y, int x, int ch, int len)
ch                557 lib/tty/tty-slang.c     if (ch == ACS_HLINE)
ch                558 lib/tty/tty-slang.c         ch = mc_tty_frm[MC_TTY_FRM_HORIZ];
ch                559 lib/tty/tty-slang.c     if (ch == 0)
ch                560 lib/tty/tty-slang.c         ch = ACS_HLINE;
ch                564 lib/tty/tty-slang.c     if (ch == ACS_HLINE)
ch                568 lib/tty/tty-slang.c             tty_print_char (ch);
ch                576 lib/tty/tty-slang.c tty_draw_vline (int y, int x, int ch, int len)
ch                593 lib/tty/tty-slang.c     if (ch == ACS_VLINE)
ch                594 lib/tty/tty-slang.c         ch = mc_tty_frm[MC_TTY_FRM_VERT];
ch                595 lib/tty/tty-slang.c     if (ch == 0)
ch                596 lib/tty/tty-slang.c         ch = ACS_VLINE;
ch                600 lib/tty/tty-slang.c     if (ch == ACS_VLINE)
ch                609 lib/tty/tty-slang.c             tty_print_char (ch);
ch                620 lib/tty/tty-slang.c tty_fill_region (int y, int x, int rows, int cols, unsigned char ch)
ch                622 lib/tty/tty-slang.c     SLsmg_fill_region (y, x, rows, cols, ch);
ch                126 lib/tty/tty.h  extern void tty_draw_hline (int y, int x, int ch, int len);
ch                127 lib/tty/tty.h  extern void tty_draw_vline (int y, int x, int ch, int len);
ch                130 lib/tty/tty.h  extern void tty_fill_region (int y, int x, int rows, int cols, unsigned char ch);
ch               1315 lib/util.c     ascii_alpha_to_cntrl (int ch)
ch               1317 lib/util.c         if ((ch >= ASCII_A && ch <= ASCII_Z) || (ch >= ASCII_a && ch <= ASCII_z))
ch               1318 lib/util.c             ch &= 0x1f;
ch               1320 lib/util.c         return ch;
ch                238 lib/util.h     extern int ascii_alpha_to_cntrl (int ch);
ch                 12 src/diffviewer/internal.h typedef int (*DFUNC) (void *ctx, int ch, int line, off_t off, size_t sz, const char *str);
ch                 68 src/diffviewer/internal.h     int ch;
ch                575 src/diffviewer/ydiff.c dview_get_byte (const char *str, int *ch)
ch                580 src/diffviewer/ydiff.c     *ch = (unsigned char) (*str);
ch                597 src/diffviewer/ydiff.c dview_get_utf (const char *str, int *ch, int *ch_length)
ch                602 src/diffviewer/ydiff.c     *ch = g_utf8_get_char_validated (str, -1);
ch                604 src/diffviewer/ydiff.c     if (*ch < 0)
ch                606 src/diffviewer/ydiff.c         *ch = (unsigned char) (*str);
ch                851 src/diffviewer/ydiff.c printer_for (char ch, DFUNC printer, void *ctx, FBUF * f, int *line, off_t * off)
ch                861 src/diffviewer/ydiff.c     printer (ctx, ch, *line, *off, sz, buf);
ch               1380 src/diffviewer/ydiff.c                 int ch = 0;
ch               1383 src/diffviewer/ydiff.c                 (void) dview_get_utf (src, &ch, &ch_length);
ch               1480 src/diffviewer/ydiff.c                 int ch = 0;
ch               1483 src/diffviewer/ydiff.c                 (void) dview_get_utf (src, &ch, &ch_length);
ch               1633 src/diffviewer/ydiff.c printer (void *ctx, int ch, int line, off_t off, size_t sz, const char *str)
ch               1638 src/diffviewer/ydiff.c     if (ch != 0)
ch               1643 src/diffviewer/ydiff.c         p.ch = ch;
ch               1675 src/diffviewer/ydiff.c     if (dsrc == DATA_SRC_TMP && (line != 0 || ch == 0))
ch               1761 src/diffviewer/ydiff.c             if (p->line != 0 && q->line != 0 && p->ch == CHG_CH)
ch               1880 src/diffviewer/ydiff.c     for (; pos > 0 && ((DIFFLN *) & g_array_index (a, DIFFLN, pos))->ch != EQU_CH; pos--)
ch               1882 src/diffviewer/ydiff.c     for (; pos > 0 && ((DIFFLN *) & g_array_index (a, DIFFLN, pos))->ch == EQU_CH; pos--)
ch               1884 src/diffviewer/ydiff.c     for (; pos > 0 && ((DIFFLN *) & g_array_index (a, DIFFLN, pos))->ch != EQU_CH; pos--)
ch               1889 src/diffviewer/ydiff.c     for (; pos > 0 && ((DIFFLN *) & g_array_index (a, DIFFLN, pos - 1))->ch == EQU_CH; pos--)
ch               1891 src/diffviewer/ydiff.c     for (; pos > 0 && ((DIFFLN *) & g_array_index (a, DIFFLN, pos - 1))->ch != EQU_CH; pos--)
ch               1903 src/diffviewer/ydiff.c     for (; pos < a->len && ((DIFFLN *) & g_array_index (a, DIFFLN, pos))->ch != EQU_CH; pos++)
ch               1905 src/diffviewer/ydiff.c     for (; pos < a->len && ((DIFFLN *) & g_array_index (a, DIFFLN, pos))->ch == EQU_CH; pos++)
ch               1928 src/diffviewer/ydiff.c     int ch;
ch               1937 src/diffviewer/ydiff.c     ch = ((DIFFLN *) & g_array_index (a0, DIFFLN, pos))->ch;
ch               1938 src/diffviewer/ydiff.c     if (ch != EQU_CH)
ch               1940 src/diffviewer/ydiff.c         switch (ch)
ch               1955 src/diffviewer/ydiff.c         for (; pos > 0 && ((DIFFLN *) & g_array_index (a0, DIFFLN, pos))->ch != EQU_CH; pos--)
ch               1964 src/diffviewer/ydiff.c              pos < a0->len && ((DIFFLN *) & g_array_index (a0, DIFFLN, pos))->ch != EQU_CH; pos++)
ch               2560 src/diffviewer/ydiff.c         int ch;
ch               2566 src/diffviewer/ydiff.c         ch = p->ch;
ch               2571 src/diffviewer/ydiff.c             tty_print_char (ch);
ch               2581 src/diffviewer/ydiff.c             if (ch == ADD_CH)
ch               2583 src/diffviewer/ydiff.c             if (ch == CHG_CH)
ch               2649 src/diffviewer/ydiff.c                 if (ch == CHG_CH)
ch               2671 src/diffviewer/ydiff.c             if (ch == DEL_CH)
ch               2673 src/diffviewer/ydiff.c             if (ch == CHG_CH)
ch               1409 src/editor/edit.c     int ch = 0;
ch               1412 src/editor/edit.c         ch |= edit_buffer_get_byte (&edit->buffer, edit->buffer.curs1 - i);
ch               1414 src/editor/edit.c     return (ch == ' ' && is_aligned_on_a_tab (edit));
ch               1422 src/editor/edit.c     int i, ch = 0;
ch               1425 src/editor/edit.c         ch |= edit_buffer_get_byte (&edit->buffer, edit->buffer.curs1 + i);
ch               1427 src/editor/edit.c     return (ch == ' ' && is_aligned_on_a_tab (edit));
ch               3349 src/editor/edit.c         record_macro_buf[macro_index++].ch = char_for_insertion;
ch                216 src/editor/editbuffer.c     gunichar ch;
ch                247 src/editor/editbuffer.c         ch = *str;
ch                252 src/editor/editbuffer.c         ch = res;
ch                258 src/editor/editbuffer.c     return (int) ch;
ch                132 src/editor/editcomplete.c             int ch;
ch                134 src/editor/editcomplete.c             ch = edit_buffer_get_byte (&esm->edit->buffer, start + i);
ch                135 src/editor/editcomplete.c             if (isspace (ch))
ch                142 src/editor/editcomplete.c             g_string_append_c (temp, ch);
ch                 81 src/editor/editdraw.c     unsigned int ch;
ch                447 src/editor/editdraw.c     for (p = line; p->ch != 0; p++)
ch                459 src/editor/editdraw.c         textchar = p->ch;
ch                577 src/editor/editdraw.c                 p->ch = 0;
ch                649 src/editor/editdraw.c                                 p->ch = '<';
ch                654 src/editor/editdraw.c                                     p->ch = '-';
ch                658 src/editor/editdraw.c                                 p->ch = '>';
ch                664 src/editor/editdraw.c                                 p->ch = '<';
ch                667 src/editor/editdraw.c                                 p->ch = '>';
ch                673 src/editor/editdraw.c                                 p->ch = '>';
ch                681 src/editor/editdraw.c                             p->ch = '.';
ch                687 src/editor/editdraw.c                                 p->ch = ' ';
ch                694 src/editor/editdraw.c                             p->ch |= ' ';
ch                699 src/editor/editdraw.c                                 p->ch = ' ';
ch                711 src/editor/editdraw.c                         p->ch = '.';
ch                740 src/editor/editdraw.c                         p->ch = '^';
ch                743 src/editor/editdraw.c                         p->ch = c + 0x40;
ch                752 src/editor/editdraw.c                         p->ch = '^';
ch                755 src/editor/editdraw.c                         p->ch = '?';
ch                766 src/editor/editdraw.c                             p->ch = c;
ch                769 src/editor/editdraw.c                             p->ch = '.';
ch                780 src/editor/editdraw.c                             p->ch = c;
ch                785 src/editor/editdraw.c                             p->ch = '.';
ch                815 src/editor/editdraw.c     p->ch = 0;
ch                192 src/editor/editmacros.c         m_act.ch = record_macro_buf[i].ch;
ch                194 src/editor/editmacros.c         g_string_append_printf (macros_string, "%s:%i;", action_name, (int) record_macro_buf[i].ch);
ch                266 src/editor/editmacros.c                     .ch = -1
ch                273 src/editor/editmacros.c                     m_act.ch = strtol (macro_pair[1], NULL, 0);
ch                281 src/editor/editmacros.c                         if (m_act.ch > 0)
ch                282 src/editor/editmacros.c                             m_act.action += m_act.ch;
ch                283 src/editor/editmacros.c                         m_act.ch = -1;
ch                362 src/editor/editmacros.c                 edit_execute_cmd (edit, record_macro_buf[i].action, record_macro_buf[i].ch);
ch                399 src/editor/editmacros.c                     edit_execute_cmd (edit, m_act->action, m_act->ch);
ch                509 src/editor/editwidget.c edit_translate_key (WEdit * edit, long x_key, int *cmd, int *ch)
ch                615 src/editor/editwidget.c     *ch = char_for_insertion;
ch                959 src/editor/editwidget.c             int cmd, ch;
ch                968 src/editor/editwidget.c             else if (edit_translate_key (e, parm, &cmd, &ch))
ch                970 src/editor/editwidget.c                 edit_execute_key_command (e, cmd, ch);
ch                245 src/editor/format.c                 gunichar ch;
ch                247 src/editor/format.c                 ch = g_utf8_get_char_validated (tb, -1);
ch                248 src/editor/format.c                 if (ch != (gunichar) (-2) && ch != (gunichar) (-1))
ch                256 src/editor/format.c                     if (g_unichar_iswide (ch))
ch                316 src/filemanager/boxes.c             WCheck *ch;
ch                321 src/filemanager/boxes.c             ch = CHECK (widget_find_by_id (w, user_mini_status_id));
ch                324 src/filemanager/boxes.c             if (!ch->state)
ch               1073 src/filemanager/find.c             char ch = '\0';
ch               1089 src/filemanager/find.c                 ch = buffer[pos++];
ch               1090 src/filemanager/find.c                 if (ch == '\0')
ch               1108 src/filemanager/find.c                 if (ch == '\n')
ch               1111 src/filemanager/find.c                 strbuf[i++] = ch;
ch               1116 src/filemanager/find.c                 if (ch == '\0')
ch               1148 src/filemanager/find.c             if (ch == '\n')
ch               2789 src/filemanager/panel.c         if (c_code != 0 && (gsize) panel->quick_search.chpoint < sizeof (panel->quick_search.ch))
ch               2791 src/filemanager/panel.c             panel->quick_search.ch[panel->quick_search.chpoint] = c_code;
ch               2797 src/filemanager/panel.c             switch (str_is_valid_char (panel->quick_search.ch, panel->quick_search.chpoint))
ch               2805 src/filemanager/panel.c                 g_string_append_len (panel->quick_search.buffer, panel->quick_search.ch,
ch               2894 src/filemanager/panel.c         panel->quick_search.ch[0] = '\0';
ch                139 src/filemanager/panel.h         char ch[MB_LEN_MAX];    /* Buffer for multi-byte character */
ch                 63 src/setup.h        int ch;
ch                152 src/viewer/datasource.c mcview_get_utf (WView * view, off_t byte_index, int *ch, int *ch_len)
ch                175 src/viewer/datasource.c     *ch = 0;
ch                205 src/viewer/datasource.c         *ch = *str;
ch                212 src/viewer/datasource.c         *ch = res;
ch                173 src/viewer/hex.c             int ch = 0;
ch                183 src/viewer/hex.c                     ch = ' ';
ch                188 src/viewer/hex.c                         ch = -1;
ch                219 src/viewer/hex.c                     ch = g_utf8_get_char_validated (utf8buf, -1);
ch                220 src/viewer/hex.c                     if (ch == -1 || ch == -2)
ch                222 src/viewer/hex.c                         ch = '.';
ch                230 src/viewer/hex.c                         if (g_unichar_iswide (ch))
ch                336 src/viewer/hex.c                 ch = convert_from_utf_to_current_c (ch, view->converter);
ch                354 src/viewer/hex.c                     tty_print_anychar (ch);
ch                243 src/viewer/internal.h gboolean mcview_get_utf (WView * view, off_t byte_index, int *ch, int *ch_len);