cregit-Linux how code gets into the kernel

Release 4.11 arch/mips/boot/compressed/string.c

/*
 * arch/mips/boot/compressed/string.c
 *
 * Very small subset of simple string routines
 */

#include <linux/types.h>


void *memcpy(void *dest, const void *src, size_t n) { int i; const char *s = src; char *d = dest; for (i = 0; i < n; i++) d[i] = s[i]; return dest; }

Contributors

PersonTokensPropCommitsCommitProp
Antony Pavlov60100.00%1100.00%
Total60100.00%1100.00%


void *memset(void *s, int c, size_t n) { int i; char *ss = s; for (i = 0; i < n; i++) ss[i] = c; return s; }

Contributors

PersonTokensPropCommitsCommitProp
Antony Pavlov48100.00%1100.00%
Total48100.00%1100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Antony Pavlov112100.00%1100.00%
Total112100.00%1100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.