| 980 | } |
| 981 | |
| 982 | static int ply_check_line(p_ply ply) { |
| 983 | if (strlen(BLINE(ply)) >= LINESIZE) { |
| 984 | ply_ferror(ply, "Line too long"); |
| 985 | return 0; |
| 986 | } |
| 987 | return 1; |
| 988 | } |
| 989 | |
| 990 | static int ply_read_line(p_ply ply) { |
| 991 | const char *end = NULL; |
no test coverage detected