# container-collection-for-c **Repository Path**: hanyu_kernel/container-collection-for-c ## Basic Information - **Project Name**: container-collection-for-c - **Description**: No description available - **Primary Language**: Unknown - **License**: ISC - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 2 - **Created**: 2024-10-14 - **Last Updated**: 2024-10-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## Introduction Containers in `container-collection-for-c` are all weak containers if you store pointers in them. Which means they do NOT free those pointers when the container got deleted. ## Tools Use [drmemory](https://github.com/DynamoRIO/drmemory) to check (potential) memory leaks on Windows, or [valgrind](https://github.com/pmem/valgrind) on Unix. For example: Using drmemory: ```sh make MEMCHECK=1 build/cc_list_test_1 ``` Using valgrind: ```sh make MEMCHECK=2 build/cc_list_test_1 ```