/
githubmirror
/
gawk
Обзор
Документация
Войти
/
githubmirror
/
gawk
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
missing_d/memset.c
20 строк
265 B
Arnold D. Robbins
Add POSIX string comparison with strcoll.
25 ноя 2010, 22:22
25 ноя 2010, 22:22
286748e
Код
Авторство
О чём код?
/* * memset --- initialize memory * * We supply this routine for those systems that aren't standard yet. */ void * memset(dest, val, l) void *dest; int val; size_t l; { char *ret = dest; char *d = dest; while (l--) *d++ = val; return ((void *) ret); }