PageRenderTime 45ms CodeModel.GetById 22ms RepoModel.GetById 1ms app.codeStats 0ms

/tags/ttn-post-libtool-1-4-3-upgrade/SWIG/Examples/tcl/funcptr/example.h

#
C++ Header | 7 lines | 4 code | 2 blank | 1 comment | 0 complexity | 74695017b12e3b243b3852e995653f12 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. /* file: example.h */
  2. extern int do_op(int,int, int (*op)(int,int));
  3. extern int add(int,int);
  4. extern int sub(int,int);
  5. extern int mul(int,int);