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