mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
8 lines
120 B
C
8 lines
120 B
C
#include "byte.h"
|
|
|
|
void byte_zero(void *yv,long long ylen)
|
|
{
|
|
char *y = yv;
|
|
while (ylen > 0) { *y++ = 0; --ylen; }
|
|
}
|