c1                699 lib/strutil/strutil8bit.c         gint c1, c2;
c1                704 lib/strutil/strutil8bit.c         c1 = isupper ((guchar) * s1) ? tolower ((guchar) * s1) : *s1;
c1                706 lib/strutil/strutil8bit.c         if (c1 != c2)
c1                707 lib/strutil/strutil8bit.c             return (c1 - c2);
c1                737 lib/strutil/strutil8bit.c         gint c1, c2;
c1                743 lib/strutil/strutil8bit.c         c1 = isupper ((guchar) * s1) ? tolower ((guchar) * s1) : *s1;
c1                745 lib/strutil/strutil8bit.c         if (c1 != c2)
c1                746 lib/strutil/strutil8bit.c             return (c1 - c2);
c1                 91 lib/strutil/strverscmp.c     unsigned char c1, c2;
c1                121 lib/strutil/strverscmp.c     c1 = *p1++;
c1                124 lib/strutil/strverscmp.c     state = S_N + ((c1 == '0') + (g_ascii_isdigit (c1) ? 1 : 0));
c1                126 lib/strutil/strverscmp.c     while ((diff = c1 - c2) == 0)
c1                128 lib/strutil/strverscmp.c         if (c1 == '\0')
c1                132 lib/strutil/strverscmp.c         c1 = *p1++;
c1                134 lib/strutil/strverscmp.c         state += (c1 == '0') + (g_ascii_isdigit (c1) ? 1 : 0);
c1                172 src/editor/edit-impl.h void edit_set_markers (WEdit * edit, off_t m1, off_t m2, long c1, long c2);
c1                950 src/editor/edit.c         int c1, c2;
c1                960 src/editor/edit.c         c1 = edit_buffer_get_previous_byte (&edit->buffer);
c1                961 src/editor/edit.c         if (c1 == '\n')
c1                966 src/editor/edit.c         if ((my_type_of (c1) & my_type_of (c2)) == 0)
c1                968 src/editor/edit.c         if (isspace (c1) && !isspace (c2))
c1                970 src/editor/edit.c         if (s != 0 && !isspace (c1) && isspace (c2))
c1                991 src/editor/edit.c         int c1, c2;
c1               1001 src/editor/edit.c         c1 = edit_buffer_get_previous_byte (&edit->buffer);
c1               1002 src/editor/edit.c         if (c1 == '\n')
c1               1007 src/editor/edit.c         if ((my_type_of (c1) & my_type_of (c2)) == 0)
c1               1009 src/editor/edit.c         if (isspace (c1) && !isspace (c2))
c1               1011 src/editor/edit.c         if (s != 0 && !isspace (c1) && isspace (c2))
c1               1131 src/editor/edit.c         int c1, c2;
c1               1133 src/editor/edit.c         c1 = edit_delete (edit, TRUE);
c1               1134 src/editor/edit.c         if (c1 == '\n')
c1               1139 src/editor/edit.c         if ((isspace (c1) == 0) != (isspace (c2) == 0))
c1               1141 src/editor/edit.c         if ((my_type_of (c1) & my_type_of (c2)) == 0)
c1               1153 src/editor/edit.c         int c1, c2;
c1               1155 src/editor/edit.c         c1 = edit_backspace (edit, TRUE);
c1               1156 src/editor/edit.c         if (c1 == '\n')
c1               1161 src/editor/edit.c         if ((isspace (c1) == 0) != (isspace (c2) == 0))
c1               1163 src/editor/edit.c         if ((my_type_of (c1) & my_type_of (c2)) == 0)
c1               1899 src/editor/edit.c             unsigned char c1;
c1               1901 src/editor/edit.c             c1 = edit_buffer_get_byte (&edit->buffer, i + 1);   /* next char */
c1               1912 src/editor/edit.c                 if (c == '\r' && c1 == '\n')
c1               1916 src/editor/edit.c                 if (c == '\r' && c1 == '\r')
c1               1924 src/editor/edit.c                 if (fputc (c1, f) < 0)
c1               1933 src/editor/edit.c                 if (c == '\r' && c1 == '\n')
c1               1945 src/editor/edit.c                 if (c == '\r' && c1 == '\n')
c1               1949 src/editor/edit.c                 if (c == '\n' && c1 == '\n')
c1               1957 src/editor/edit.c                 if (fputc (c1, f) < 0)
c1               2044 src/editor/edit.c             long c1, c2;
c1               2046 src/editor/edit.c             blocklen = edit_insert_column_from_file (edit, file, &mark1, &mark2, &c1, &c2);
c1               2047 src/editor/edit.c             edit_set_markers (edit, edit->buffer.curs1, mark2, c1, c2);
c1               3102 src/editor/edit.c edit_set_markers (WEdit *edit, off_t m1, off_t m2, long c1, long c2)
c1               3106 src/editor/edit.c     edit->column1 = c1;
c1               3213 src/editor/edit.c         int c1, c2;
c1               3215 src/editor/edit.c         c1 = edit_buffer_get_byte (&edit->buffer, pos);
c1               3217 src/editor/edit.c         if (!isspace (c1) && isspace (c2))
c1               3219 src/editor/edit.c         if ((my_type_of (c1) & my_type_of (c2)) == 0)
c1               3226 src/editor/edit.c         int c1, c2;
c1               3228 src/editor/edit.c         c1 = edit_buffer_get_byte (&edit->buffer, pos);
c1               3230 src/editor/edit.c         if (!isspace (c1) && isspace (c2))
c1               3232 src/editor/edit.c         if ((my_type_of (c1) & my_type_of (c2)) == 0)
c1                402 src/editor/editbuffer.c     int c1, c2;
c1                406 src/editor/editbuffer.c         c1 = edit_buffer_get_byte (buf, word_start);
c1                409 src/editor/editbuffer.c         if (is_break_char (c1) != is_break_char (c2) || c1 == '\n' || c2 == '\n')
c1                417 src/editor/editbuffer.c         c1 = edit_buffer_get_byte (buf, word_start + match_expr->len);
c1                419 src/editor/editbuffer.c         g_string_append_c (match_expr, c1);
c1                421 src/editor/editbuffer.c     while (!(is_break_char (c1) != is_break_char (c2) || c1 == '\n' || c2 == '\n'));
c1                502 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               1282 src/editor/editcmd.c     long c1 = 0, c2 = 0;
c1               1301 src/editor/editcmd.c         edit_insert_column_of_text (edit, copy_buf, size, col_delta, &mark1, &mark2, &c1, &c2);
c1               1319 src/editor/editcmd.c         edit_set_markers (edit, edit->buffer.curs1, mark2, c1, c2);
c1               1350 src/editor/editcmd.c         long c1, c2, b_width;
c1               1354 src/editor/editcmd.c         c1 = MIN (edit->column1, edit->column2);
c1               1356 src/editor/editcmd.c         b_width = c2 - c1;
c1               1366 src/editor/editcmd.c         if (b1 == b2 && x2 > c1 && x2 <= c2)
c1               1374 src/editor/editcmd.c             else if (x > c1 && x <= c2)
c1               1375 src/editor/editcmd.c                 x = c1;
c1               1394 src/editor/editcmd.c         edit_insert_column_of_text (edit, copy_buf, size, b_width, &mark1, &mark2, &c1, &c2);
c1               1395 src/editor/editcmd.c         edit_set_markers (edit, mark1, mark2, c1, c2);
c1                690 src/editor/spell.c         int c1, c2;
c1                699 src/editor/spell.c             c1 = c2;
c1                703 src/editor/spell.c         while (is_break_char (c1) || is_break_char (c2));
c1                448 src/viewer/internal.h     int c0, c1, c2;
c1                452 src/viewer/internal.h     if (!mcview_get_byte_indexed (view, offset, 1, &c1) || c1 != '\b')