diff options
author | Abhinav Dronamraju | 2017-07-07 16:41:38 +0530 |
---|---|---|
committer | Abhinav Dronamraju | 2017-07-07 16:41:38 +0530 |
commit | 4725141f2cb4e7de494d7eae8664ab9172dafc13 (patch) | |
tree | cbcbc1a5c204087e7c54175315e98096ba1101e0 /2.3-1/src/c/elementaryFunctions/interfaces | |
parent | 77da5591c712d5f5819afb4eeb503435336d0741 (diff) | |
download | Scilab2C-4725141f2cb4e7de494d7eae8664ab9172dafc13.tar.gz Scilab2C-4725141f2cb4e7de494d7eae8664ab9172dafc13.tar.bz2 Scilab2C-4725141f2cb4e7de494d7eae8664ab9172dafc13.zip |
Added isscalar
Diffstat (limited to '2.3-1/src/c/elementaryFunctions/interfaces')
-rw-r--r-- | 2.3-1/src/c/elementaryFunctions/interfaces/int_isiscalar.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/2.3-1/src/c/elementaryFunctions/interfaces/int_isiscalar.h b/2.3-1/src/c/elementaryFunctions/interfaces/int_isiscalar.h new file mode 100644 index 00000000..9d139712 --- /dev/null +++ b/2.3-1/src/c/elementaryFunctions/interfaces/int_isiscalar.h @@ -0,0 +1,26 @@ + /*This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Abhinav Dronamraju + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + + + +#ifndef __INT_ISROW_H__ +#define __INT_ISROW_H__ + +#define d2isscalarg0(in, size ) disscalara(in, size[0]) +#define d0isscalarg0(in) disscalars(in) +#define s2isscalarg0(in , size) sisscalara(in, size[0]) +#define s0isscalarg0(in) sisscalars(in) +#define g2isscalarg0(in, size) gisscalara(in, size[0]) +#define g0isscalarg0(in) gisscalars(in) +#define z2isscalarg0(in, size) zisscalara(in , size[0]) +#define z0isscalarg0(in) zisscalars(in) + + +#endif |