xref: /rk3399_ARM-atf/lib/libc/memset.c (revision 713769515f66add17f2a874311619a9874d088ae)
1 /*
2  * Copyright (c) 2013-2019, ARM Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #include <stddef.h>
8 #include <string.h>
9 
10 void *memset(void *dst, int val, size_t count)
11 {
12 	char *ptr = dst;
13 
14 	while (count--)
15 		*ptr++ = val;
16 
17 	return dst;
18 }
19