From: Kevin Day Date: Wed, 4 Sep 2024 03:21:53 +0000 (-0500) Subject: Bugfix: Replace index() with strchr(). X-Git-Tag: 0.6.12~11 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=96ed9f4a8fc64f8f1e8e48d76de483a31cf117f7;p=fll Bugfix: Replace index() with strchr(). The `index()` function is deprecated. Use the `strchr()` function instead. --- diff --git a/level_0/f_environment/c/environment.c b/level_0/f_environment/c/environment.c index 66bf895..7d09dde 100644 --- a/level_0/f_environment/c/environment.c +++ b/level_0/f_environment/c/environment.c @@ -91,7 +91,7 @@ extern char **environ; map.name.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.name.string = *string;