URL
https://opencores.org/ocsvn/s6soc/s6soc/trunk
Subversion Repositories s6soc
[/] [s6soc/] [trunk/] [sw/] [zipos/] [ziplib.c] - Rev 44
Go to most recent revision | Compare with Previous | Blame | View Log
#include "ziplib.h" void *memset(void *s, int c, unsigned n) { int *p = s; do { *p++ = c; } while(n-- > 0); }
Go to most recent revision | Compare with Previous | Blame | View Log