1 // SPDX-License-Identifier: Apache-2.0 2 // SPDX-FileCopyrightText: Copyright OpenBMC Authors 3 #ifndef HEX_TEST_H 4 #define HEX_TEST_H 5 6 void test_hex_encode_good(void); 7 void test_hex_decode_good(void); 8 void test_hex_error_cases(void); 9 void test_hex_roundtrip(void); 10 11 #endif 12