blob: b72ce7f581fff85641a66570112ed3042c8385e6 [file] [log] [blame]
xiaohu.huangbf62d7b2023-07-18 18:02:43 +08001/*
2 * Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
3 *
4 * SPDX-License-Identifier: MIT
5 */
6
7#ifndef __AML_STRNCMP_H__
8#define __AML_STRNCMP_H__
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
14#include <stddef.h>
15
16int strncmp(const char *s1, const char *s2, size_t n);
17
18#ifdef __cplusplus
19}
20#endif
21
22#endif