Sun, 09 Feb 2025 22:03:52 +0100
add missing documentation about what header to include
relates to #451
--- a/docs/Writerside/topics/allocator.h.md Sun Feb 09 22:02:13 2025 +0100 +++ b/docs/Writerside/topics/allocator.h.md Sun Feb 09 22:03:52 2025 +0100 @@ -12,6 +12,8 @@ ## Overview ```C +#include <cx/allocator.h> + void *cxMalloc(const CxAllocator *allocator, size_t n); void *cxCalloc(const CxAllocator *allocator,
--- a/docs/Writerside/topics/compare.h.md Sun Feb 09 22:02:13 2025 +0100 +++ b/docs/Writerside/topics/compare.h.md Sun Feb 09 22:03:52 2025 +0100 @@ -32,6 +32,8 @@ ## List of Functions ```C +#include <cx/compare.h> + // Value Flavour cx_vcmp_double cx_vcmp_float
--- a/docs/Writerside/topics/mempool.h.md Sun Feb 09 22:02:13 2025 +0100 +++ b/docs/Writerside/topics/mempool.h.md Sun Feb 09 22:03:52 2025 +0100 @@ -13,6 +13,8 @@ ## Overview ```C +#include <cx/mempool.h> + CxMempool *cxMempoolCreate(size_t capacity, cx_destructor_func fnc); CxMempool *cxMempoolCreateSimple(size_t capacity);
--- a/docs/Writerside/topics/test.h.md Sun Feb 09 22:02:13 2025 +0100 +++ b/docs/Writerside/topics/test.h.md Sun Feb 09 22:03:52 2025 +0100 @@ -6,6 +6,8 @@ An arbitrary number of test cases can be registered with `cx_test_register()`. ```C +#include <cx/test.h> + CxTestSuite *suite = cx_test_suite_new("My Suite"); cx_test_register(suite, test_foo);