1 /* 2 * Copyright 2024 Advanced Micro Devices, Inc. 3 * 4 * SPDX-License-Identifier: MIT 5 */ 6 7 #ifndef HELPERS_H 8 #define HELPERS_H 9 10 #include <stdbool.h> 11 #include <stdint.h> 12 13 bool 14 util_lower_clearsize_to_dword(const void *clear_value, int *clear_value_size, 15 uint32_t *out); 16 17 #endif 18