comparison rDiff/mex/mex_input.h @ 0:0f80a5141704

version 0.3 uploaded
author vipints
date Thu, 14 Feb 2013 23:38:36 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:0f80a5141704
1 /*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 3 of the License, or
5 * (at your option) any later version.
6 *
7 * Written (W) 2010-2011 Jonas Behr, Regina Bohnert, Gunnar Raetsch
8 * Copyright (C) 2010-2011 Max Planck Society
9 */
10
11
12 #include <stdio.h>
13 #include <mex.h>
14
15 #ifndef __MEX_INPUT_h__
16 #define __MEX_INPUT_h__
17 char *get_string(const mxArray *prhs);
18 bool get_bool(const mxArray *prhs);
19 int get_int(const mxArray *prhs);
20 #endif