File: array_qualifier.h

package info (click to toggle)
gauche-c-wrapper 0.6.1-18
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,440 kB
  • sloc: ansic: 17,899; sh: 14,025; asm: 6,456; lisp: 5,485; yacc: 2,109; makefile: 520; exp: 194; cpp: 157; objc: 144; perl: 2
file content (6 lines) | stat: -rw-r--r-- 142 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
struct foo {
    int (*f1)(int a[static 10]);
    int (*f2)(int a[restrict]);
    int (*f3)(int a[const]);
    int (*f4)(int a[volatile]);
};