| 175 | } |
| 176 | |
| 177 | static void debug_lol_write( FILE * out, LOL * lol ) |
| 178 | { |
| 179 | int i; |
| 180 | debug_int_write( out, lol->count ); |
| 181 | for ( i = 0; i < lol->count; ++i ) |
| 182 | { |
| 183 | debug_list_write( out, lol_get( lol, i ) ); |
| 184 | } |
| 185 | } |
| 186 | |
| 187 | static void debug_lol_read( FILE * in, LOL * lol ) |
| 188 | { |
no test coverage detected