| 185 | ~NISTTestVectorFile() { if ( f ) fclose( f ); } |
| 186 | |
| 187 | bool FindNextTest() |
| 188 | { |
| 189 | if ( !f ) |
| 190 | return false; |
| 191 | char line[2048]; |
| 192 | while ( fgets( line, sizeof(line), f ) ) |
| 193 | { |
| 194 | if ( V_strnicmp( line, "count", 5 ) == 0 ) |
| 195 | return true; |
| 196 | } |
| 197 | return false; |
| 198 | } |
| 199 | |
| 200 | bool GetBinaryBlob( const char *pszTag, std::string &blob ) |
| 201 | { |
no test coverage detected