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