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