c1 694 lib/strutil/strutil8bit.c gint c1, c2; c1 699 lib/strutil/strutil8bit.c c1 = isupper ((guchar) *s1) ? tolower ((guchar) *s1) : *s1; c1 701 lib/strutil/strutil8bit.c if (c1 != c2) c1 702 lib/strutil/strutil8bit.c return (c1 - c2); c1 732 lib/strutil/strutil8bit.c gint c1, c2; c1 738 lib/strutil/strutil8bit.c c1 = isupper ((guchar) *s1) ? tolower ((guchar) *s1) : *s1; c1 740 lib/strutil/strutil8bit.c if (c1 != c2) c1 741 lib/strutil/strutil8bit.c return (c1 - c2); c1 91 lib/strutil/strverscmp.c unsigned char c1, c2; c1 117 lib/strutil/strverscmp.c c1 = *p1++; c1 120 lib/strutil/strverscmp.c state = S_N + ((c1 == '0') + (g_ascii_isdigit (c1) ? 1 : 0)); c1 122 lib/strutil/strverscmp.c while ((diff = c1 - c2) == 0) c1 124 lib/strutil/strverscmp.c if (c1 == '\0') c1 128 lib/strutil/strverscmp.c c1 = *p1++; c1 130 lib/strutil/strverscmp.c state += (c1 == '0') + (g_ascii_isdigit (c1) ? 1 : 0); c1 171 src/editor/edit-impl.h void edit_set_markers (WEdit *edit, off_t m1, off_t m2, long c1, long c2); c1 942 src/editor/edit.c int c1, c2; c1 950 src/editor/edit.c c1 = edit_buffer_get_previous_byte (&edit->buffer); c1 951 src/editor/edit.c if (c1 == '\n') c1 956 src/editor/edit.c if ((my_type_of (c1) & my_type_of (c2)) == 0) c1 958 src/editor/edit.c if (isspace (c1) && !isspace (c2)) c1 960 src/editor/edit.c if (s != 0 && !isspace (c1) && isspace (c2)) c1 981 src/editor/edit.c int c1, c2; c1 989 src/editor/edit.c c1 = edit_buffer_get_previous_byte (&edit->buffer); c1 990 src/editor/edit.c if (c1 == '\n') c1 995 src/editor/edit.c if ((my_type_of (c1) & my_type_of (c2)) == 0) c1 997 src/editor/edit.c if (isspace (c1) && !isspace (c2)) c1 999 src/editor/edit.c if (s != 0 && !isspace (c1) && isspace (c2)) c1 1112 src/editor/edit.c int c1, c2; c1 1114 src/editor/edit.c c1 = edit_delete (edit, TRUE); c1 1115 src/editor/edit.c if (c1 == '\n') c1 1120 src/editor/edit.c if ((isspace (c1) == 0) != (isspace (c2) == 0)) c1 1122 src/editor/edit.c if ((my_type_of (c1) & my_type_of (c2)) == 0) c1 1134 src/editor/edit.c int c1, c2; c1 1136 src/editor/edit.c c1 = edit_backspace (edit, TRUE); c1 1137 src/editor/edit.c if (c1 == '\n') c1 1142 src/editor/edit.c if ((isspace (c1) == 0) != (isspace (c2) == 0)) c1 1144 src/editor/edit.c if ((my_type_of (c1) & my_type_of (c2)) == 0) c1 1879 src/editor/edit.c unsigned char c1; c1 1881 src/editor/edit.c c1 = edit_buffer_get_byte (&edit->buffer, i + 1); // next char c1 1892 src/editor/edit.c if (c == '\r' && c1 == '\n') c1 1896 src/editor/edit.c if (c == '\r' && c1 == '\r') c1 1904 src/editor/edit.c if (fputc (c1, f) < 0) c1 1913 src/editor/edit.c if (c == '\r' && c1 == '\n') c1 1925 src/editor/edit.c if (c == '\r' && c1 == '\n') c1 1929 src/editor/edit.c if (c == '\n' && c1 == '\n') c1 1937 src/editor/edit.c if (fputc (c1, f) < 0) c1 2024 src/editor/edit.c long c1, c2; c1 2026 src/editor/edit.c blocklen = edit_insert_column_from_file (edit, file, &mark1, &mark2, &c1, &c2); c1 2027 src/editor/edit.c edit_set_markers (edit, edit->buffer.curs1, mark2, c1, c2); c1 3060 src/editor/edit.c edit_set_markers (WEdit *edit, off_t m1, off_t m2, long c1, long c2) c1 3064 src/editor/edit.c edit->column1 = c1; c1 3171 src/editor/edit.c int c1, c2; c1 3173 src/editor/edit.c c1 = edit_buffer_get_byte (&edit->buffer, pos); c1 3175 src/editor/edit.c if (!isspace (c1) && isspace (c2)) c1 3177 src/editor/edit.c if ((my_type_of (c1) & my_type_of (c2)) == 0) c1 3184 src/editor/edit.c int c1, c2; c1 3186 src/editor/edit.c c1 = edit_buffer_get_byte (&edit->buffer, pos); c1 3188 src/editor/edit.c if (!isspace (c1) && isspace (c2)) c1 3190 src/editor/edit.c if ((my_type_of (c1) & my_type_of (c2)) == 0) c1 400 src/editor/editbuffer.c int c1, c2; c1 404 src/editor/editbuffer.c c1 = edit_buffer_get_byte (buf, word_start); c1 407 src/editor/editbuffer.c if (is_break_char (c1) != is_break_char (c2) || c1 == '\n' || c2 == '\n') c1 415 src/editor/editbuffer.c c1 = edit_buffer_get_byte (buf, word_start + match_expr->len); c1 417 src/editor/editbuffer.c g_string_append_c (match_expr, c1); c1 419 src/editor/editbuffer.c while (!(is_break_char (c1) != is_break_char (c2) || c1 == '\n' || c2 == '\n')); c1 501 src/editor/editcmd.c long curs_line, c1, c2; c1 514 src/editor/editcmd.c c1 = MIN (edit->column1, edit->column2); c1 516 src/editor/editcmd.c edit->column1 = c1; c1 1280 src/editor/editcmd.c long c1 = 0, c2 = 0; c1 1299 src/editor/editcmd.c edit_insert_column_of_text (edit, copy_buf, size, col_delta, &mark1, &mark2, &c1, &c2); c1 1317 src/editor/editcmd.c edit_set_markers (edit, edit->buffer.curs1, mark2, c1, c2); c1 1347 src/editor/editcmd.c long c1, c2, b_width; c1 1351 src/editor/editcmd.c c1 = MIN (edit->column1, edit->column2); c1 1353 src/editor/editcmd.c b_width = c2 - c1; c1 1363 src/editor/editcmd.c if (b1 == b2 && x2 > c1 && x2 <= c2) c1 1371 src/editor/editcmd.c else if (x > c1 && x <= c2) c1 1372 src/editor/editcmd.c x = c1; c1 1391 src/editor/editcmd.c edit_insert_column_of_text (edit, copy_buf, size, b_width, &mark1, &mark2, &c1, &c2); c1 1392 src/editor/editcmd.c edit_set_markers (edit, mark1, mark2, c1, c2); c1 681 src/editor/spell.c int c1, c2; c1 690 src/editor/spell.c c1 = c2; c1 694 src/editor/spell.c while (is_break_char (c1) || is_break_char (c2)); c1 445 src/viewer/internal.h int c0, c1, c2; c1 449 src/viewer/internal.h if (!mcview_get_byte_indexed (view, offset, 1, &c1) || c1 != '\b')