File: array.i

package info (click to toggle)
swig 1.1.p883-4
  • links: PTS
  • area: main
  • in suites: woody
  • size: 9,264 kB
  • ctags: 5,129
  • sloc: cpp: 20,856; ansic: 13,627; yacc: 3,314; python: 2,794; makefile: 2,216; perl: 1,970; tcl: 1,583; sh: 716; lisp: 201; objc: 143
file content (16 lines) | stat: -rw-r--r-- 250 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
%module array
%{

%}

// Test array parsing

extern int foo(int a[4], int b[4][4], int c[4][4][3]);
extern int func(int argc, char *argv[]);

typedef  float MATRIX4[4][4];

extern float matrix(MATRIX4 a);

extern float matrixofmatrix(MATRIX4 a[4]);