Da Vinci Firmware 1
Firmware for the DaVinci-M rocket avionics board.
Loading...
Searching...
No Matches
find.h
Go to the documentation of this file.
1
19#ifndef FIND_H
20#define FIND_H
21
22/* Include Files */
23#include "rtwtypes.h"
24#include <stddef.h>
25#include <stdlib.h>
26
27#ifdef __cplusplus
28extern "C" {
29#endif
30
31/* Function Declarations */
42int b_eml_find(const boolean_T x[5], int i_data[]);
43
54int eml_find(const boolean_T x[6], int i_data[]);
55
56#ifdef __cplusplus
57}
58#endif
59
60#endif
61/*
62 * File trailer for find.h
63 *
64 * [EOF]
65 */
int b_eml_find(const boolean_T x[5], int i_data[])
Finds the index of the last true element in a 5-element boolean array.
Definition find.c:21
int eml_find(const boolean_T x[6], int i_data[])
Finds the index of the last true element in a 6-element boolean array.
Definition find.c:51
bool boolean_T
Generic boolean type.
Definition rtwtypes.h:89
Defines standard data types for code generated by MATLAB Coder.