Searched refs:str_end (Results 1 – 5 of 5) sorted by relevance
/dflybsd-src/lib/libtelnet/ |
H A D | encrypt.c | 134 static unsigned char str_end[] = { IAC, SB, TELOPT_ENCRYPT, 0, IAC, SE }; variable 852 str_end[3] = ENCRYPT_END; in encrypt_send_end() 853 net_write(str_end, sizeof(str_end)); in encrypt_send_end() 855 printsub('>', &str_end[2], sizeof(str_end) - 2); in encrypt_send_end() 890 str_end[3] = ENCRYPT_REQEND; in encrypt_send_request_end() 891 net_write(str_end, sizeof(str_end)); in encrypt_send_request_end() 892 printsub('>', &str_end[2], sizeof(str_end) - 2); in encrypt_send_request_end()
|
/dflybsd-src/games/sail/ |
H A D | dr_2.c | 50 static int str_end(const char *); 153 str_end(const char *str) in str_end() function 258 if ((n = str_end(temp)) < '1' || n > '9') in try() 272 if ((ma > 0 && ta > 0 && (n = str_end(temp)) != 'l' && n != 'r') || in try() 287 if ((ma > 0 && ta > 0 && (n = str_end(temp)) != 'l' && n != 'r') || in try()
|
/dflybsd-src/contrib/tcsh-6/ |
H A D | sh.file.c | 695 Char *str_end, *word_start, last_Char, should_retype; in tenex() local 709 str_end = &inputline[num_read]; in tenex() 711 --str_end; /* wipeout trailing cmd Char */ in tenex() 712 *str_end = '\0'; in tenex() 717 for (word_start = str_end; word_start > inputline; --word_start) in tenex() 725 print_recognized_stuff(str_end); in tenex()
|
H A D | tw.parse.c | 160 Char *str_end, *cp; in tenematch() local 168 str_end = &inputline[num_read]; in tenematch() 173 for (cp = inputline; cp < str_end; cp++) { in tenematch() 204 if (cmap(*cp, _ESC) && cp < str_end - 1 && cp[1] == HIST && in tenematch() 330 insert_meta(word_start, str_end, qline.s + word, !qu) < 0) in tenematch() 338 for (bptr = word_start; bptr < str_end; bptr++) { in tenematch() 371 if (insert_meta(word_start, str_end, qline.s + word, !qu) < 0) in tenematch() 398 DeleteBack(str_end - word_start);/* get rid of old word */ in tenematch() 419 if (insert_meta(word_start, str_end, bptr, !qu) < 0) { in tenematch() 433 if (insert_meta(word_start, str_end, bptr, !qu) < 0) { in tenematch() [all …]
|
/dflybsd-src/contrib/less/ |
H A D | search.c | 153 constant char *str_end = str + strlen(str); in is_ucase() local 156 while (str < str_end) in is_ucase() 158 ch = step_charc(&str, +1, str_end); in is_ucase()
|