xiaohu.huang | 1fd6f11 | 2022-05-24 11:02:05 +0800 | [diff] [blame] | 1 | /* |
2 | * Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved. | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: MIT | ||||
5 | */ | ||||
6 | |||||
7 | #ifndef __AML_MEMCMP_H__ | ||||
8 | #define __AML_MEMCMP_H__ | ||||
9 | |||||
10 | #ifdef __cplusplus | ||||
11 | extern "C" { | ||||
12 | #endif | ||||
13 | |||||
14 | #include <stddef.h> | ||||
15 | |||||
16 | int memcmp(const void *s1, const void *s2, size_t n); | ||||
17 | |||||
18 | #ifdef __cplusplus | ||||
19 | } | ||||
20 | #endif | ||||
21 | |||||
22 | #endif |