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/isscalar/gisscalara.c | |
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/isscalar/gisscalara.c')
-rw-r--r-- | 2.3-1/src/c/elementaryFunctions/isscalar/gisscalara.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/2.3-1/src/c/elementaryFunctions/isscalar/gisscalara.c b/2.3-1/src/c/elementaryFunctions/isscalar/gisscalara.c new file mode 100644 index 00000000..fdfac778 --- /dev/null +++ b/2.3-1/src/c/elementaryFunctions/isscalar/gisscalara.c @@ -0,0 +1,24 @@ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + 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 +*/ + +#include <stdio.h> +#include <stdlib.h> +#include <math.h> +#include "isscalar.h" +#include "types.h" +#include "string.h" +char gisscalara(char *inp, int size1) +{ + char out='F'; + + return out; +} |