eRPC Generator (erpcgen)  Rev. 1.7.2
NXP Semiconductors
HexValues.h
1 /*
2  * Copyright (c) 2014, Freescale Semiconductor, Inc.
3  * Copyright 2016 NXP
4  * All rights reserved.
5  *
6  *
7  * SPDX-License-Identifier: BSD-3-Clause
8  */
9 #if !defined(_HexValues_h_)
10 #define _HexValues_h_
11 
12 #include <cstdbool>
13 #include <cstdint>
14 
16 bool isHexDigit(char c);
17 
19 uint8_t hexCharToInt(char c);
20 
22 uint8_t hexByteToInt(const char *encodedByte);
23 
24 #endif // _HexValues_h_