Balint Dobszay | 550ce87 | 2022-12-15 15:28:40 +0100 | [diff] [blame] | 1 | /* |
2 | * Copyright (c) 2023, Arm Limited. All rights reserved. | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: BSD-3-Clause | ||||
5 | */ | ||||
6 | |||||
7 | #ifndef CRC32_DISCOVERY_H | ||||
8 | #define CRC32_DISCOVERY_H | ||||
9 | |||||
10 | #include <stdbool.h> | ||||
11 | |||||
12 | #ifdef __cplusplus | ||||
13 | extern "C" { | ||||
14 | #endif | ||||
15 | |||||
16 | bool crc32_armv8a_hw_available(void); | ||||
17 | |||||
18 | #ifdef __cplusplus | ||||
19 | } | ||||
20 | #endif | ||||
21 | |||||
22 | #endif /* CRC32_DISCOVERY_H */ |