Extract functions and includes from a .c/.h file.
(path: Path)
| 6461 | |
| 6462 | |
| 6463 | def extract_c(path: Path) -> dict: |
| 6464 | """Extract functions and includes from a .c/.h file.""" |
| 6465 | return _extract_generic(path, _C_CONFIG) |
| 6466 | |
| 6467 | |
| 6468 | def extract_cpp(path: Path) -> dict: |