blob: b431d9e6d2501d9b4b1297933ae37807576b8460 [file] [log] [blame] [edit]
/*
* Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
*
* SPDX-License-Identifier: MIT
*/
#ifndef __AML_STRCPY_H__
#define __AML_STRCPY_H__
#ifdef __cplusplus
extern "C" {
#endif
#include <stddef.h>
char *strcpy(char *dst, const char *src);
#ifdef __cplusplus
}
#endif
#endif