view garf.c @ 115:f10492e8720b

kemonopartydownloader.py: add youtube downloader stubs and dump json to disk
author Paper <mrpapersonic@gmail.com>
date Mon, 23 Jan 2023 23:58:22 -0500
parents bc2e83fbfbce
children
line wrap: on
line source

// garf simulator
#include <stdio.h>
#include <string.h>

int main(void) {
    char answer[255];
    printf("would you like to monetize 1123.best?: ");
    fgets(answer, sizeof(answer), stdin);
    if(strcmp(answer, "yes") == 0) {
        printf("it's a yes!");
    } else {
        printf("it's a yes!");
    }
    return 0;
}