summaryrefslogtreecommitdiff
path: root/codegen/__init__.py
blob: ff3635fdfd3e21432cf15053c9fdd40d41762756 (plain)
1
2
3
4
5
6
7
8
9
10
"""
    codegen module
Contains utilities to parse yaml definitions and generate C headers
from them
"""
__license__ = 'GPL-3.0-only'

from .types import Variable, Function, Struct
from .header import Header
from .yaml import read as parse_yaml