FEATURES.md
LICENSE
MANIFEST.in
README.md
pyproject.toml
requirements.txt
setup.py
examples/README.md
examples/arg_parser.c
examples/array_example.c
examples/astar.c
examples/avl_tree.c
examples/base64.c
examples/calculator.c
examples/csv_parser.c
examples/dijkstra.c
examples/factorial.c
examples/fibonacci.c
examples/float_example.c
examples/function_pointer_example.c
examples/hash_map.c
examples/hash_table.c
examples/heap_sort.c
examples/hello_stdlib.c
examples/hello_world.c
examples/ini_parser.c
examples/json_parser.c
examples/macro_example.c
examples/matrix_ops.c
examples/memory_allocator.c
examples/merge_sort.c
examples/polynomial.c
examples/prime_sieve.c
examples/priority_queue.c
examples/red_black_tree.c
examples/regex_matcher.c
examples/rle_compression.c
examples/simple_math.c
examples/simple_shell.c
examples/string_format.c
examples/string_tokenizer.c
examples/struct_example.c
examples/text_editor.c
examples/trie.c
examples/variadic_example.c
examples/vector_ops.c
pyc99.egg-info/PKG-INFO
pyc99.egg-info/SOURCES.txt
pyc99.egg-info/dependency_links.txt
pyc99.egg-info/entry_points.txt
pyc99.egg-info/not-zip-safe
pyc99.egg-info/requires.txt
pyc99.egg-info/top_level.txt
src/__init__.py
src/main.py
src/codegen/__init__.py
src/codegen/base_codegen.py
src/codegen/arm/__init__.py
src/codegen/arm/arm_codegen.py
src/codegen/arm/arm_instructions.py
src/codegen/arm/arm_registers.py
src/codegen/arm/register_allocator.py
src/codegen/x86/__init__.py
src/codegen/x86/register_allocator.py
src/codegen/x86/x86_codegen.py
src/codegen/x86/x86_instructions.py
src/codegen/x86/x86_registers.py
src/driver/__init__.py
src/driver/compiler_driver.py
src/driver/toolchain.py
src/ir/__init__.py
src/ir/basic_block.py
src/ir/ir_generator.py
src/ir/ir_module.py
src/ir/ir_nodes.py
src/lexer/__init__.py
src/lexer/token_types.py
src/lexer/tokenizer.py
src/optimizer/__init__.py
src/optimizer/constant_folding.py
src/optimizer/dead_code.py
src/optimizer/optimizer.py
src/optimizer/strength_reduction.py
src/parser/__init__.py
src/parser/ast_nodes.py
src/parser/parser.py
src/preprocessor/__init__.py
src/preprocessor/preprocessor.py
src/semantic/__init__.py
src/semantic/analyzer.py
src/semantic/struct_layout.py
src/semantic/symbol.py
src/semantic/symbol_kinds.py
src/semantic/symbol_table.py
src/semantic/type_checker.py
src/semantic/type_utils.py
src/utils/__init__.py
src/utils/error_reporter.py
src/utils/error_suggestions.py
src/utils/source_location.py
tests/__init__.py
tests/conformance/README.md
tests/conformance/__init__.py
tests/conformance/test_c99_error_handling.py
tests/conformance/test_c99_expressions.py
tests/conformance/test_c99_expressions_extended.py
tests/conformance/test_c99_functions.py
tests/conformance/test_c99_pointers_arrays.py
tests/conformance/test_c99_pointers_arrays_extended.py
tests/conformance/test_c99_preprocessor.py
tests/conformance/test_c99_statements.py
tests/conformance/test_c99_statements_extended.py
tests/conformance/test_c99_structs.py
tests/conformance/test_c99_types.py
tests/conformance/test_c99_types_extended.py
tests/conformance/test_performance.py
tests/conformance/test_real_world.py
tests/conformance/test_reference_validation.py
tests/conformance/test_utils.py
tests/integration/test_array_compilation.py
tests/integration/test_end_to_end.py
tests/integration/test_multifile_compilation.py
tests/integration/test_pointer_compilation.py
tests/integration/test_stdlib_integration.py
tests/unit/__init__.py
tests/unit/test_arm_codegen.py
tests/unit/test_array_indexing.py
tests/unit/test_array_initialization.py
tests/unit/test_array_type.py
tests/unit/test_control_flow.py
tests/unit/test_driver.py
tests/unit/test_function_pointers.py
tests/unit/test_ir.py
tests/unit/test_lexer.py
tests/unit/test_operators.py
tests/unit/test_optimizer.py
tests/unit/test_parser.py
tests/unit/test_parser_arrays.py
tests/unit/test_preprocessor.py
tests/unit/test_semantic.py
tests/unit/test_semantic_variables.py
tests/unit/test_string_literals.py
tests/unit/test_struct.py
tests/unit/test_type_system.py
tests/unit/test_variadic_functions.py
tests/unit/test_x86_codegen.py