eRPC Generator (erpcgen)  Rev. 1.11.0
NXP Semiconductors
Utils.hpp
1 /* Copyright 2023 NXP
2  * Copyright 2023 ACRIOS Systems s.r.o.
3  * All rights reserved.
4  *
5  *
6  * SPDX-License-Identifier: BSD-3-Clause
7  */
8 
9 #ifndef _EMBEDDED_RPC__UTILS_H_
10 #define _EMBEDDED_RPC__UTILS_H_
11 
12 #include <iostream>
13 #include <string>
14 
15 namespace erpcgen {
16 
17 void replaceAll(std::string &str, const std::string &from, const std::string &to);
18 
19 } // namespace erpcgen
20 
21 #endif //_EMBEDDED_RPC__UTILS_H_
Definition: AstNode.hpp:26