* c.texi (Variable-Length Array Parameters): Replace camel-cased variable with GNU style.

This commit is contained in:
Ineiev 2025-04-27 09:47:10 +00:00
parent 0d70e2cf5f
commit a630a59760
1 changed files with 2 additions and 2 deletions

4
c.texi
View File

@ -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{}}
@}