Expand description
AST extraction for C source code
This module provides two parsing modes:
- Strict mode: Fails on syntax errors (default, for clean code)
- Tolerant mode: Extracts what it can even with errors (for real-world code)
Structs§
- Extraction
Options - Extraction options for controlling parser behavior
- Extraction
Result - Result of extraction with additional metadata
Functions§
- extract
- Extract code entities and relationships from C source code (strict mode)
- extract_
with_ options - Extract with custom options (supports tolerant mode)