File: array.h

package info (click to toggle)
breathe 4.36.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,224 kB
  • sloc: python: 12,703; cpp: 1,737; makefile: 523; xml: 168; sh: 54; ansic: 52
file content (13 lines) | stat: -rw-r--r-- 283 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13

/** My function */
int foo(int a[5]);

/** My other function 
 * 
 * @test This declaration is supposed to be
 * @code{.c}
 * int bar(int n, int a[static n]);
 * @endcode
 * But, Sphinx fails to recognize `int a[static n])` as a C specific array syntax
 */
int bar(int n, int a[]);