LICENSE
README.md
pyproject.toml
setup.py
cgull/__init__.py
cgull/__main__.py
cgull/ast_analyzer.py
cgull/baseline.py
cgull/cfg.py
cgull/cli.py
cgull/config.py
cgull/engine.py
cgull/ignore.py
cgull/includes.py
cgull/logging_config.py
cgull/models.py
cgull/reporter.py
cgull/utils.py
cgull.egg-info/PKG-INFO
cgull.egg-info/SOURCES.txt
cgull.egg-info/dependency_links.txt
cgull.egg-info/entry_points.txt
cgull.egg-info/requires.txt
cgull.egg-info/top_level.txt
cgull/rules/__init__.py
cgull/rules/banned_functions.py
cgull/rules/base.py
cgull/rules/crypto_and_safety.py
cgull/rules/misra_and_style.py
cgull/rules/memory_management/__init__.py
cgull/rules/memory_management/double_free.py
cgull/rules/memory_management/helpers.py
cgull/rules/memory_management/memcpy_struct_member_overflow.py
cgull/rules/memory_management/memory_leak.py
cgull/rules/memory_management/missing_null_check_params.py
cgull/rules/memory_management/realloc_overwrite.py
cgull/rules/memory_management/return_stack_variable.py
cgull/rules/memory_management/unchecked_dynamic_allocations.py
cgull/rules/memory_management/uninitialized_memory_use.py
cgull/rules/memory_management/uninitialized_pointers.py
cgull/rules/memory_management/unsafe_sensitive_memory_clearing.py
cgull/rules/memory_management/use_after_free.py
cgull/rules/types_and_arrays/__init__.py
cgull/rules/types_and_arrays/arithmetic_integer_overflow.py
cgull/rules/types_and_arrays/array_index_out_of_bounds.py
cgull/rules/types_and_arrays/bitwise_operations_on_signed_integers.py
cgull/rules/types_and_arrays/division_by_zero.py
cgull/rules/types_and_arrays/incorrect_pointer_scaling.py
cgull/rules/types_and_arrays/pointer_subtraction_size.py
cgull/rules/types_and_arrays/signed_unsigned_comparison.py
cgull/rules/types_and_arrays/sizeof_on_pointer.py
cgull/rules/types_and_arrays/use_of_magic_numbers.py
cgull/rules/types_and_arrays/variable_length_arrays.py
tests/__init__.py
tests/conftest.py
tests/run_corpus.py
tests/test_ast_analyzer.py
tests/test_banned_functions_struct_dest.py
tests/test_baseline.py
tests/test_cfg_dataflow.py
tests/test_cgull_007_struct_members.py
tests/test_cli.py
tests/test_compile_commands.py
tests/test_conditional_flag_collector.py
tests/test_config.py
tests/test_config_seed.py
tests/test_config_space_scan.py
tests/test_config_space_variants.py
tests/test_config_strategy.py
tests/test_corpus.py
tests/test_cross_cutting_variant_matrix.py
tests/test_dead_stores.py
tests/test_engine.py
tests/test_header_dedup.py
tests/test_ignore.py
tests/test_includes.py
tests/test_juliet_benchmark.py
tests/test_logging.py
tests/test_memcpy_struct_member_overflow.py
tests/test_models.py
tests/test_naked_control_flow.py
tests/test_reporter.py
tests/test_rules_comprehensive.py
tests/test_scanner.py
tests/test_setup.py
tests/test_struct_defs.py
tests/test_utils.py
tests/test_variable_shadowing.py