File: all.h1 /* 2 * all.h 3 * 4 * Code generation for function 'all' 5 * 6 */ 7 8 #ifndef ALL_H 9 #define ALL_H 10 11 /* Include files */ 12 #include <math.h> 13 #include <stdio.h> 14 #include <stdlib.h> 15 #include <string.h> 16 #include "mwmathutil.h" 17 #include "tmwtypes.h" 18 #include "mex.h" 19 #include "emlrt.h" 20 #include "covrt.h" 21 #include "rtwtypes.h" 22 #include "gjbf_types.h" 23 24 /* Function Declarations */ 25 extern void all(const emlrtStack *sp, const boolean_T x[14112], boolean_T y[16]); 26 extern boolean_T b_all(const boolean_T x[16]); 27 extern boolean_T c_all(const boolean_T x[3]); 28 extern void d_all(const emlrtStack *sp, const boolean_T x[48], boolean_T y[16]); 29 extern void e_all(const emlrtStack *sp, const boolean_T x[320], boolean_T y[16]); 30 extern void f_all(const emlrtStack *sp, const boolean_T x_data[], const int32_T 31 x_size[2], boolean_T y[16]); 32 extern boolean_T g_all(const emlrtStack *sp, const boolean_T x_data[], const 33 int32_T x_size[1]); 34 extern boolean_T h_all(const boolean_T x[882]); 35 36 #endif 37 38 /* End of code generation (all.h) */ 39 |