From 62f6afa3ab6229677f842ff4826342b310a63a8a Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Tue, 3 Sep 2024 22:21:15 -0500 Subject: [PATCH] Bugfix: Replace index() with strchr(). The `index()` function is deprecated. Use the `strchr()` function instead. --- level_0/f_environment/c/environment.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/level_0/f_environment/c/environment.c b/level_0/f_environment/c/environment.c index 80b8b3c..89a1ee3 100644 --- a/level_0/f_environment/c/environment.c +++ b/level_0/f_environment/c/environment.c @@ -95,7 +95,7 @@ extern char **environ; map.key.used = 0; map.value.used = 0; - at = index(*string, f_string_ascii_equal_s.string[0]); + at = strchr(*string, f_string_ascii_equal_s.string[0]); if (!at || at == *string) continue; map.key.string = *string; -- 1.8.3.1