| 61 | |
| 62 | |
| 63 | void parse_file( OBJECT * f, FRAME * frame ) |
| 64 | { |
| 65 | /* Suspend scan of current file and push this new file in the stream. */ |
| 66 | yyfparse( f ); |
| 67 | |
| 68 | parse_impl( frame ); |
| 69 | } |
| 70 | |
| 71 | |
| 72 | void parse_string( OBJECT * name, const char * * lines, FRAME * frame ) |
no test coverage detected