xiaohu.huang | bf62d7b | 2023-07-18 18:02:43 +0800 | [diff] [blame] | 1 | /* |
2 | * Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved. | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: MIT | ||||
5 | */ | ||||
6 | |||||
7 | #include <string.h> | ||||
8 | #include "aml_strcat.h" | ||||
9 | |||||
10 | char *strcat(char *dst, const char *src) | ||||
11 | { | ||||
12 | (void)strcpy(dst + strlen(dst), src); | ||||
13 | |||||
14 | return dst; | ||||
15 | } | ||||
16 |