From: Kevin Day Date: Thu, 23 Jun 2022 23:10:32 +0000 (-0500) Subject: Bugfix: The fss_identify needs the latest version of f_utf_is_digit(). X-Git-Tag: 0.5.10~23 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=949dae66f28af64e71b1e555b55be57c451b5f52;p=fll Bugfix: The fss_identify needs the latest version of f_utf_is_digit(). --- diff --git a/level_3/fss_identify/c/private-identify.c b/level_3/fss_identify/c/private-identify.c index 73a07e5..0441ddb 100644 --- a/level_3/fss_identify/c/private-identify.c +++ b/level_3/fss_identify/c/private-identify.c @@ -94,7 +94,7 @@ extern "C" { break; } - if (f_utf_is_digit(data->name.string + i, data->name.used - i) != F_true) { + if (f_utf_is_digit(data->name.string + i, data->name.used - i, 0) != F_true) { mode = 0; } } // for