MCPcopy Create free account
hub / github.com/Graphify-Labs/graphify / extract_c

Function extract_c

graphify/extract.py:6463–6465  ·  view source on GitHub ↗

Extract functions and includes from a .c/.h file.

(path: Path)

Source from the content-addressed store, hash-verified

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

Calls 1

_extract_genericFunction · 0.85