blob: ad871fb545bf53f505ff2e8db5dc6bdb66d8199d [file] [log] [blame] [edit]
/*
* Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
*
* SPDX-License-Identifier: MIT
*/
#include "aml_stpcpy.h"
char *stpcpy(char *dst, const char *src)
{
while ((*dst++ = *src++) != '\0')
; /* nothing */
return --dst;
}