blob: 6985a037d3ecf72c708ab2584951a181ff13cd62 [file] [log] [blame] [edit]
/*
* Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
*
* SPDX-License-Identifier: MIT
*/
#ifndef __AML_STPCPY_H__
#define __AML_STPCPY_H__
#ifdef __cplusplus
extern "C" {
#endif
char *stpcpy(char *dst, const char *src);
#ifdef __cplusplus
}
#endif
#endif