diff options
author | imushir | 2015-11-27 15:32:16 +0530 |
---|---|---|
committer | imushir | 2015-11-27 15:32:16 +0530 |
commit | cb13a61d1043086204b9836f207b3dfcb57b3187 (patch) | |
tree | 3960c9d26511b297c7b12a6e0c39e787c7ec306c /src/c/auxiliaryFunctions | |
parent | 0c8130c84b8a9de153dbcf41154805ae20afa96f (diff) | |
download | Scilab2C_fossee_old-cb13a61d1043086204b9836f207b3dfcb57b3187.tar.gz Scilab2C_fossee_old-cb13a61d1043086204b9836f207b3dfcb57b3187.tar.bz2 Scilab2C_fossee_old-cb13a61d1043086204b9836f207b3dfcb57b3187.zip |
#define for u8 u16 i8 i16 added
Diffstat (limited to 'src/c/auxiliaryFunctions')
-rw-r--r-- | src/c/auxiliaryFunctions/includes/find.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/c/auxiliaryFunctions/includes/find.h b/src/c/auxiliaryFunctions/includes/find.h index 3104e95..8072f74 100644 --- a/src/c/auxiliaryFunctions/includes/find.h +++ b/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 |