| 973 | } |
| 974 | |
| 975 | static void ply_finish_word(p_ply ply, size_t size) { |
| 976 | ply->buffer_token = ply->buffer_first; |
| 977 | BSKIP(ply, size); |
| 978 | *BFIRST(ply) = '\0'; |
| 979 | BSKIP(ply, 1); |
| 980 | } |
| 981 | |
| 982 | static int ply_check_line(p_ply ply) { |
| 983 | if (strlen(BLINE(ply)) >= LINESIZE) { |