xref: /rk3399_ARM-atf/lib/libc/memset.c (revision 8d0a3bb38d3c74e791d45f6cbfbd5da84d32194a)
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