From 79e83c3092dd7e35ef7275aa607a926669c2e257 Mon Sep 17 00:00:00 2001 From: Stephen Heumann Date: Sat, 10 Jun 2023 21:27:00 -0500 Subject: [PATCH] Update format checker to reflect that L length modifier now works in scanf. --- Printf.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Printf.pas b/Printf.pas index db42cbe..8a64dc6 100644 --- a/Printf.pas +++ b/Printf.pas @@ -52,7 +52,7 @@ const feature_ll = true; feature_s_long = false; feature_n_size = true; - feature_scanf_ld = false; + feature_scanf_ld = true; type length_modifier = (default, h, hh, l, ll, j, z, t, ld);