blob: 669fc3afb5ada32b99f753bbcff60ce293e3e0cb [file] [log] [blame] [edit]
/*
* Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
*
* SPDX-License-Identifier: MIT
*/
#ifndef __AML_MEMCMP_H__
#define __AML_MEMCMP_H__
#ifdef __cplusplus
extern "C" {
#endif
#include <stddef.h>
int memcmp(const void *s1, const void *s2, size_t n);
#ifdef __cplusplus
}
#endif
#endif