cmvr_head/packages/erpc-1.14.0/erpc_c/infra/erpc_utils.hpp

18 lines
435 B
C++
Raw Normal View History

2025-12-30 15:44:41 +08:00
/*
* Copyright 2023 ACRIOS Systems s.r.o.
* All rights reserved.
*
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include <stdint.h>
namespace erpc {
typedef void *functionPtr_t;
typedef functionPtr_t *arrayOfFunctionPtr_t;
bool findIndexOfFunction(const arrayOfFunctionPtr_t sourceArrayOfFunctionPtr, uint16_t sourceArrayLength,
const functionPtr_t functionPtr, uint16_t &retVal);
} // namespace erpc