eRPC API Reference  Rev. 1.12.0
NXP Semiconductors
erpc_utils.hpp
1 /*
2  * Copyright 2023 ACRIOS Systems s.r.o.
3  * All rights reserved.
4  *
5  *
6  * SPDX-License-Identifier: BSD-3-Clause
7  */
8 
9 #include <stdint.h>
10 
11 namespace erpc {
12 typedef void *functionPtr_t;
13 typedef functionPtr_t *arrayOfFunctionPtr_t;
14 
15 bool findIndexOfFunction(const arrayOfFunctionPtr_t sourceArrayOfFunctionPtr, uint16_t sourceArrayLength,
16  const functionPtr_t functionPtr, uint16_t &retVal);
17 } // namespace erpc
Definition: erpc_arbitrated_client_manager.hpp:25