Metadata-Version: 2.1
Name: pycparser-fake-libc
Version: 2.21
Summary: Pip-installable package with pycparser's fake libc headers
Home-page: https://github.com/ThomasGerstenberg/pycparser-fake-libc
Author: Thomas Gerstenberg
Author-email: tgerst6@gmail.com
License: UNKNOWN
Keywords: pycparser
Platform: UNKNOWN
Description-Content-Type: text/markdown

# pycparser-fake-libc

Simple build wrapper to create a pip-installable package which includes all of the headers from [pycparser](https://github.com/eliben/pycparser)/utils/fake_libc_include.

See: https://github.com/eliben/pycparser

To build, run `make` to copy the headers from the submoduled `pycparser` into the library dir and build the wheel file

Usage:

```python
import os
import pycparser_fake_libc
import pycparser

fake_libc_arg = "-I" + pycparser_fake_libc.directory

ast = pycparser.parse_file("c_file_to_parse.c", use_cpp=True, cpp_args=fake_libc_arg)
```


