Release 4.18 arch/x86/purgatory/string.c
/*
* Simple string functions.
*
* Copyright (C) 2014 Red Hat Inc.
*
* Author:
* Vivek Goyal <vgoyal@redhat.com>
*
* This source code is licensed under the GNU General Public License,
* Version 2. See the file COPYING for more details.
*/
#include <linux/types.h>
#include "../boot/string.c"
void *memcpy(void *dst, const void *src, size_t len)
{
return __builtin_memcpy(dst, src, len);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Philipp Rudo | 28 | 100.00% | 1 | 100.00% |
Total | 28 | 100.00% | 1 | 100.00% |
void *memset(void *dst, int c, size_t len)
{
return __builtin_memset(dst, c, len);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Philipp Rudo | 26 | 100.00% | 1 | 100.00% |
Total | 26 | 100.00% | 1 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Philipp Rudo | 57 | 93.44% | 1 | 50.00% |
Vivek Goyal | 4 | 6.56% | 1 | 50.00% |
Total | 61 | 100.00% | 2 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.