| 139 | } |
| 140 | |
| 141 | static int debug_int_read( FILE * in ) |
| 142 | { |
| 143 | OBJECT * str = debug_object_read( in ); |
| 144 | int result = atoi( object_str( str ) ); |
| 145 | object_free( str ); |
| 146 | return result; |
| 147 | } |
| 148 | |
| 149 | static void debug_list_write( FILE * out, LIST * l ) |
| 150 | { |
no test coverage detected