| 919 | } |
| 920 | |
| 921 | static int ply_check_word(p_ply ply) { |
| 922 | size_t size = strlen(BWORD(ply)); |
| 923 | if (size >= WORDSIZE) { |
| 924 | ply_ferror(ply, "Word too long"); |
| 925 | return 0; |
| 926 | } else if (size == 0) { |
| 927 | ply_ferror(ply, "Unexpected end of file"); |
| 928 | return 0; |
| 929 | } |
| 930 | return 1; |
| 931 | } |
| 932 | |
| 933 | static int ply_read_word(p_ply ply) { |
| 934 | size_t t = 0; |
no test coverage detected