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