Mercurial > codedump
view ken_source_downloader.c @ 97:f1f4f6da04bd
kemonopartydownloader.py: convert to percent formatting,
add typing to functions and "fix" the drive downloading
committer: GitHub <noreply@github.com>
author | Paper <37962225+mrpapersonic@users.noreply.github.com> |
---|---|
date | Sat, 13 Aug 2022 20:27:58 -0400 |
parents | 05803e046878 |
children |
line wrap: on
line source
#include <time.h> #include <stdio.h> #include <stdlib.h> int main(void) { srand(time(NULL)); FILE* ken = fopen("MVI_1332 (2).MOV", "w"); long i; for (i = 0; i <= 1529118700; i++) { fprintf(ken, "%c", rand() % 255); // make it 500x slower printf("Downloading ken source... %d%% complete\r", i/1529118700*100); } fclose(ken); }