1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/** * @file container_utils.h * @author your name (you@domain.com) * @brief * @version 0.1 * @date 2024-06-19 * * @copyright Copyright (c) 2024 * */ #pragma once typedef struct generic_iterator { } generic_iterator; typedef void* (*iterator_next_item)(void* iterator);