blob: af1a93195ca9f7f877df579ad293b1ed4e97728d [file] [log] [blame] [edit]
/*
* Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
*
* SPDX-License-Identifier: MIT
*/
#ifndef __AML_STRLEN_H__
#define __AML_STRLEN_H__
#ifdef __cplusplus
extern "C" {
#endif
#if (1 == CONFIG_ARM64)
#include <sys/types.h>
size_t strlen(const char *s);
#else
int strlen(const char *s);
#endif
#ifdef __cplusplus
}
#endif
#endif