From a630a59760c6aa2db67aeba0ff41c7a8babf2e12 Mon Sep 17 00:00:00 2001 From: Ineiev Date: Sun, 27 Apr 2025 09:47:10 +0000 Subject: [PATCH] * c.texi (Variable-Length Array Parameters): Replace camel-cased variable with GNU style. --- c.texi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/c.texi b/c.texi index e6afedd..af6b678 100644 --- a/c.texi +++ b/c.texi @@ -11285,10 +11285,10 @@ in-scope variable for the length in the function definition: struct entry tester (char data[*][*]); @r{@dots{}} -int dataLength = 20; +int data_length = 20; @r{@dots{}} struct entry -tester (char data[dataLength][dataLength]) +tester (char data[data_length][data_length]) @{ @r{@dots{}} @}