e50a444796
- Copied 58 files from C:\projects\gencpp\base\ to tests/assets/gencpp_samples - Added test_gencpp_full_suite.py that validates: - Skeleton generation for all .hpp files - Code outline generation - get_definition for key symbols - AST masking with aggregation - All 25 tests pass
12 lines
229 B
C++
12 lines
229 B
C++
#ifdef INTELLISENSE_DIRECTIVES
|
|
#pragma once
|
|
#include "containers.hpp"
|
|
#endif
|
|
|
|
#pragma region Hashing
|
|
|
|
GEN_API u32 crc32( void const* data, ssize len );
|
|
GEN_API u64 crc64( void const* data, ssize len );
|
|
|
|
#pragma endregion Hashing
|