* c.texi (Variable-Length Array Parameters): Replace camel-cased variable with GNU style.
This commit is contained in:
parent
0d70e2cf5f
commit
a630a59760
4
c.texi
4
c.texi
|
@ -11285,10 +11285,10 @@ in-scope variable for the length in the function definition:
|
||||||
struct entry
|
struct entry
|
||||||
tester (char data[*][*]);
|
tester (char data[*][*]);
|
||||||
@r{@dots{}}
|
@r{@dots{}}
|
||||||
int dataLength = 20;
|
int data_length = 20;
|
||||||
@r{@dots{}}
|
@r{@dots{}}
|
||||||
struct entry
|
struct entry
|
||||||
tester (char data[dataLength][dataLength])
|
tester (char data[data_length][data_length])
|
||||||
@{
|
@{
|
||||||
@r{@dots{}}
|
@r{@dots{}}
|
||||||
@}
|
@}
|
||||||
|
|
Loading…
Reference in New Issue