/tags/Root-branch-php-utl/SWIG/Examples/python/funcptr/example.h
C++ Header | 9 lines | 5 code | 3 blank | 1 comment | 0 complexity | c9e8b1acf5d8c724dbd9cd0e807cea19 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
1/* file: example.h */
2
3extern int do_op(int,int, int (*op)(int,int));
4extern int add(int,int);
5extern int sub(int,int);
6extern int mul(int,int);
7
8extern int (*funcvar)(int,int);
9