(headers, cflags)
| 281 | |
| 282 | |
| 283 | def inspect_code(headers, cflags): |
| 284 | if not DEBUG: |
| 285 | info = inspect_headers(headers, cflags) |
| 286 | else: |
| 287 | info = {'defines': {}, 'structs': {}} |
| 288 | for header in headers: |
| 289 | merge_info(info, inspect_headers([header], cflags)) |
| 290 | return info |
| 291 | |
| 292 | |
| 293 | def parse_json(path): |
no test coverage detected