blob: 77a22d180962826743a2436beb73655314167b70 [file] [log] [blame]
Balint Dobszay550ce872022-12-15 15:28:40 +01001/*
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
13extern "C" {
14#endif
15
16bool crc32_armv8a_hw_available(void);
17
18#ifdef __cplusplus
19}
20#endif
21
22#endif /* CRC32_DISCOVERY_H */