From c6f713a6de66becb0527bef5669ed2a617cd1a44 Mon Sep 17 00:00:00 2001 From: Raphael Date: Thu, 19 Sep 2024 15:25:16 +0200 Subject: [PATCH] style: noming env_iter --- output/src/hashmap/env/env_iter.c | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/output/src/hashmap/env/env_iter.c b/output/src/hashmap/env/env_iter.c index 04f79742..38d97121 100644 --- a/output/src/hashmap/env/env_iter.c +++ b/output/src/hashmap/env/env_iter.c @@ -1,26 +1,24 @@ /* ************************************************************************** */ /* */ /* ::: :::::::: */ -/* hashmap_env.h :+: :+: :+: */ +/* env_iter.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: maiboyer +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/12/06 11:00:22 by maiboyer #+# #+# */ -/* Updated: 2023/12/11 15:24:44 by maiboyer ### ########.fr */ +/* Updated: 2024/09/19 15:25:10 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ #include "me/hashmap/hashmap_env.h" -t_error hmap_env_iter(t_hashmap_env *self, - t_error (*func)(t_usize idx, - const t_str *key, - t_str *val, void *ctx), - void *ctx) +t_error hmap_env_iter(\ + t_hashmap_env *self, t_error (*func)(\ + t_usize idx, const t_str *key, t_str *val, void *ctx), void *ctx) { - t_usize bucket_id; - t_usize all_id; - t_entry_env *cur; + t_usize bucket_id; + t_usize all_id; + t_entry_env *cur; bucket_id = 0; all_id = 0;