diff options
author | imushir | 2015-11-27 15:32:16 +0530 |
---|---|---|
committer | imushir | 2015-11-27 15:32:16 +0530 |
commit | 187d0caf8f8547e9dc87760522dc518a3d806752 (patch) | |
tree | 41c2b349d955cb243cb3c330ec675d70cd4fdd93 | |
parent | 076a4cdde2bd1902c739ec3c620b3c2e8a7bf1a4 (diff) | |
download | Scilab2C-187d0caf8f8547e9dc87760522dc518a3d806752.tar.gz Scilab2C-187d0caf8f8547e9dc87760522dc518a3d806752.tar.bz2 Scilab2C-187d0caf8f8547e9dc87760522dc518a3d806752.zip |
#define for u8 u16 i8 i16 added
-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 |