diff options
author | siddhu8990 | 2015-11-28 11:21:19 +0530 |
---|---|---|
committer | siddhu8990 | 2015-11-28 11:21:19 +0530 |
commit | 3eeb9f450ed9360a4d84e64fa8bee9be2fafb5c7 (patch) | |
tree | aabbd1a190c49ba6f4ad953dfe50daf22916b7a7 /2.3-1/src/c/auxiliaryFunctions/includes | |
parent | 128638e88ce6d8414c9e1061faa96008be9bcda5 (diff) | |
parent | fd8c4f9bc0763e85c16a59c7639803fd09663281 (diff) | |
download | Scilab2C-3eeb9f450ed9360a4d84e64fa8bee9be2fafb5c7.tar.gz Scilab2C-3eeb9f450ed9360a4d84e64fa8bee9be2fafb5c7.tar.bz2 Scilab2C-3eeb9f450ed9360a4d84e64fa8bee9be2fafb5c7.zip |
Merge branch 'master' of https://github.com/siddhu8990/Scilab2C
Diffstat (limited to '2.3-1/src/c/auxiliaryFunctions/includes')
-rw-r--r-- | 2.3-1/src/c/auxiliaryFunctions/includes/find.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/2.3-1/src/c/auxiliaryFunctions/includes/find.h b/2.3-1/src/c/auxiliaryFunctions/includes/find.h index 3104e957..8072f745 100644 --- a/2.3-1/src/c/auxiliaryFunctions/includes/find.h +++ b/2.3-1/src/c/auxiliaryFunctions/includes/find.h @@ -16,6 +16,7 @@ #include "dynlib_auxiliaryfunctions.h" #include "floatComplex.h" #include "doubleComplex.h" +#include "types.h" #ifdef __cplusplus extern "C" { @@ -44,6 +45,32 @@ EXTERN_AUXFUNCT void cfinda(floatComplex* z, int size, float *out, int max); */ EXTERN_AUXFUNCT void zfinda(doubleComplex* z, int size, double *out, int max); +/* +** \brief uint8 Find function +** max is an integer giving the maximum number of indices to return. (use -1 to search them all) +*/ +EXTERN_AUXFUNCT void u8finda(uint8 *x, int size, uint8 *out, int max); + +/* +** \brief uint16 Find function +** max is an integer giving the maximum number of indices to return. (use -1 to search them all) +*/ +EXTERN_AUXFUNCT void u16finda(uint16 *x, int size, uint16 *out, int max); + +/* +** \brief int8 Find function +** max is an integer giving the maximum number of indices to return. (use -1 to search them all) +*/ +EXTERN_AUXFUNCT void i8finda(int8 *x, int size, int8 *out, int max); + +/* +** \brief int16 Find function +** max is an integer giving the maximum number of indices to return. (use -1 to search them all) +*/ +EXTERN_AUXFUNCT void i16finda(int16 *x, int size, int16 *out, int max); + + + #ifdef __cplusplus } /* extern "C" */ #endif |