blob: c5f4431fe69f6dea14d8d3db0d9f637140471349 [file] [log] [blame]
xiaohu.huangbf62d7b2023-07-18 18:02:43 +08001/*
2 * Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
3 *
4 * SPDX-License-Identifier: MIT
5 */
6
7#include "aml_strcpy.h"
8
9char *strcpy(char *dst, const char *src)
10{
11 char *dst_tmp = dst;
12
13 while (*src != '\0') {
14 *dst_tmp = *src;
15 dst_tmp++;
16 src++;
17 }
18 *dst_tmp = *src;
19
20 return dst;
21}