1 /* 2 * Copyright (c) 2022 Meta 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef ZEPHYR_TESTS_LIB_HASH_MAP_SRC_MAIN_H_ 8 #define ZEPHYR_TESTS_LIB_HASH_MAP_SRC_MAIN_H_ 9 10 #include <zephyr/sys/hash_map.h> 11 12 #define MANY CONFIG_TEST_LIB_HASH_MAP_MAX_ENTRIES 13 #define CUSTOM_LOAD_FACTOR 42 14 15 extern struct sys_hashmap map; 16 extern struct sys_hashmap custom_load_factor_map; 17 18 #endif 19