| 4336 | } |
| 4337 | |
| 4338 | BF_EXPORT void BF_CALLTYPE BfParser_GetLineCharAtIdx(BfParser* bfParser, int idx, int* line, int* lineChar) |
| 4339 | { |
| 4340 | int _line, _lineChar; |
| 4341 | |
| 4342 | bfParser->GetLineCharAtIdx(idx, _line, _lineChar); |
| 4343 | |
| 4344 | *line = _line; |
| 4345 | *lineChar = _lineChar; |
| 4346 | } |
| 4347 | |
| 4348 | BF_EXPORT int BF_CALLTYPE BfParser_GetIndexAtLine(BfParser* bfParser, int line) |
| 4349 | { |
nothing calls this directly
no test coverage detected