| 89 | |
| 90 | |
| 91 | void yyfparse( OBJECT * s ) |
| 92 | { |
| 93 | include * i = (include *)BJAM_MALLOC( sizeof( *i ) ); |
| 94 | |
| 95 | /* Push this onto the incp chain. */ |
| 96 | i->string = (char*)""; |
| 97 | i->strings = 0; |
| 98 | i->file = 0; |
| 99 | i->fname = object_copy( s ); |
| 100 | i->line = 0; |
| 101 | i->next = incp; |
| 102 | incp = i; |
| 103 | } |
| 104 | |
| 105 | |
| 106 | void yysparse( OBJECT * name, const char * * lines ) |
no test coverage detected