c1                686 lib/strutil/strutil8bit.c         gint c1, c2;
c1                691 lib/strutil/strutil8bit.c         c1 = isupper ((guchar) * s1) ? tolower ((guchar) * s1) : *s1;
c1                693 lib/strutil/strutil8bit.c         if (c1 != c2)
c1                694 lib/strutil/strutil8bit.c             return (c1 - c2);
c1                721 lib/strutil/strutil8bit.c         gint c1, c2;
c1                727 lib/strutil/strutil8bit.c         c1 = isupper ((guchar) * s1) ? tolower ((guchar) * s1) : *s1;
c1                729 lib/strutil/strutil8bit.c         if (c1 != c2)
c1                730 lib/strutil/strutil8bit.c             return (c1 - c2);
c1                 92 lib/strutil/strverscmp.c     unsigned char c1, c2;
c1                122 lib/strutil/strverscmp.c     c1 = *p1++;
c1                125 lib/strutil/strverscmp.c     state = S_N + ((c1 == '0') + (isdigit (c1) != 0));
c1                127 lib/strutil/strverscmp.c     while ((diff = c1 - c2) == 0)
c1                129 lib/strutil/strverscmp.c         if (c1 == '\0')
c1                133 lib/strutil/strverscmp.c         c1 = *p1++;
c1                135 lib/strutil/strverscmp.c         state += (c1 == '0') + (isdigit (c1) != 0);
c1                195 src/editor/edit-impl.h void edit_set_markers (WEdit * edit, off_t m1, off_t m2, long c1, long c2);
c1                961 src/editor/edit.c         int c1, c2;
c1                971 src/editor/edit.c         c1 = edit_buffer_get_previous_byte (&edit->buffer);
c1                972 src/editor/edit.c         if (c1 == '\n')
c1                977 src/editor/edit.c         if ((my_type_of (c1) & my_type_of (c2)) == 0)
c1                979 src/editor/edit.c         if (isspace (c1) && !isspace (c2))
c1                981 src/editor/edit.c         if (s != 0 && !isspace (c1) && isspace (c2))
c1               1002 src/editor/edit.c         int c1, c2;
c1               1012 src/editor/edit.c         c1 = edit_buffer_get_previous_byte (&edit->buffer);
c1               1013 src/editor/edit.c         if (c1 == '\n')
c1               1018 src/editor/edit.c         if ((my_type_of (c1) & my_type_of (c2)) == 0)
c1               1020 src/editor/edit.c         if (isspace (c1) && !isspace (c2))
c1               1022 src/editor/edit.c         if (s != 0 && !isspace (c1) && isspace (c2))
c1               1142 src/editor/edit.c         int c1, c2;
c1               1144 src/editor/edit.c         c1 = edit_delete (edit, TRUE);
c1               1145 src/editor/edit.c         if (c1 == '\n')
c1               1150 src/editor/edit.c         if ((isspace (c1) == 0) != (isspace (c2) == 0))
c1               1152 src/editor/edit.c         if ((my_type_of (c1) & my_type_of (c2)) == 0)
c1               1164 src/editor/edit.c         int c1, c2;
c1               1166 src/editor/edit.c         c1 = edit_backspace (edit, TRUE);
c1               1167 src/editor/edit.c         if (c1 == '\n')
c1               1172 src/editor/edit.c         if ((isspace (c1) == 0) != (isspace (c2) == 0))
c1               1174 src/editor/edit.c         if ((my_type_of (c1) & my_type_of (c2)) == 0)
c1               1910 src/editor/edit.c             unsigned char c1;
c1               1912 src/editor/edit.c             c1 = edit_buffer_get_byte (&edit->buffer, i + 1);   /* next char */
c1               1923 src/editor/edit.c                 if (c == '\r' && c1 == '\n')
c1               1927 src/editor/edit.c                 if (c == '\r' && c1 == '\r')
c1               1935 src/editor/edit.c                 if (fputc (c1, f) < 0)
c1               1944 src/editor/edit.c                 if (c == '\r' && c1 == '\n')
c1               1956 src/editor/edit.c                 if (c == '\r' && c1 == '\n')
c1               1960 src/editor/edit.c                 if (c == '\n' && c1 == '\n')
c1               1968 src/editor/edit.c                 if (fputc (c1, f) < 0)
c1               2063 src/editor/edit.c             long c1, c2;
c1               2065 src/editor/edit.c             blocklen = edit_insert_column_from_file (edit, file, &mark1, &mark2, &c1, &c2);
c1               2066 src/editor/edit.c             edit_set_markers (edit, edit->buffer.curs1, mark2, c1, c2);
c1               3108 src/editor/edit.c edit_set_markers (WEdit * edit, off_t m1, off_t m2, long c1, long c2)
c1               3112 src/editor/edit.c     edit->column1 = c1;
c1               3219 src/editor/edit.c         int c1, c2;
c1               3221 src/editor/edit.c         c1 = edit_buffer_get_byte (&edit->buffer, pos);
c1               3223 src/editor/edit.c         if (!isspace (c1) && isspace (c2))
c1               3225 src/editor/edit.c         if ((my_type_of (c1) & my_type_of (c2)) == 0)
c1               3232 src/editor/edit.c         int c1, c2;
c1               3234 src/editor/edit.c         c1 = edit_buffer_get_byte (&edit->buffer, pos);
c1               3236 src/editor/edit.c         if (!isspace (c1) && isspace (c2))
c1               3238 src/editor/edit.c         if ((my_type_of (c1) & my_type_of (c2)) == 0)
c1                403 src/editor/editbuffer.c     int c1, c2;
c1                407 src/editor/editbuffer.c         c1 = edit_buffer_get_byte (buf, word_start);
c1                410 src/editor/editbuffer.c         if (is_break_char (c1) != is_break_char (c2) || c1 == '\n' || c2 == '\n')
c1                418 src/editor/editbuffer.c         c1 = edit_buffer_get_byte (buf, word_start + match_expr->len);
c1                420 src/editor/editbuffer.c         g_string_append_c (match_expr, c1);
c1                422 src/editor/editbuffer.c     while (!(is_break_char (c1) != is_break_char (c2) || c1 == '\n' || c2 == '\n'));
c1                510 src/editor/editcmd.c     long curs_line, c1, c2;
c1                522 src/editor/editcmd.c     c1 = MIN (edit->column1, edit->column2);
c1                524 src/editor/editcmd.c     edit->column1 = c1;
c1               1281 src/editor/editcmd.c     long c1 = 0, c2 = 0;
c1               1300 src/editor/editcmd.c         edit_insert_column_of_text (edit, copy_buf, size, col_delta, &mark1, &mark2, &c1, &c2);
c1               1318 src/editor/editcmd.c         edit_set_markers (edit, edit->buffer.curs1, mark2, c1, c2);
c1               1349 src/editor/editcmd.c         long c1, c2, b_width;
c1               1353 src/editor/editcmd.c         c1 = MIN (edit->column1, edit->column2);
c1               1355 src/editor/editcmd.c         b_width = c2 - c1;
c1               1365 src/editor/editcmd.c         if (b1 == b2 && x2 > c1 && x2 <= c2)
c1               1373 src/editor/editcmd.c             else if (x > c1 && x <= c2)
c1               1374 src/editor/editcmd.c                 x = c1;
c1               1393 src/editor/editcmd.c         edit_insert_column_of_text (edit, copy_buf, size, b_width, &mark1, &mark2, &c1, &c2);
c1               1394 src/editor/editcmd.c         edit_set_markers (edit, mark1, mark2, c1, c2);
c1                663 src/editor/spell.c         int c1, c2;
c1                672 src/editor/spell.c             c1 = c2;
c1                676 src/editor/spell.c         while (is_break_char (c1) || is_break_char (c2));
c1                446 src/viewer/internal.h     int c0, c1, c2;
c1                450 src/viewer/internal.h     if (!mcview_get_byte_indexed (view, offset, 1, &c1) || c1 != '\b')