CTRL+V THREAD! [part XIII] (999)

1 Name: ( ˃ ƒŽ˂) : 1993-09-8690 05:04

It was a eurobeat/techno remix of Dang Ni Gu Dan by Nicholas Teo

384 Name: (*゚ー゚) : 1993-09-8979 18:58

Oh, lemon, you are my lemon,
Ay, where do you grow in my garden?
Oh, lemon, you are my lemon,

385 Name: (*゚ー゚) : 1993-09-8979 19:08

output_pbm(int *image[HEIGHT][WIDTH]){
FILE *output_file = fopen("out.pbm", "wb");
    // Add header.
fprintf(output_file, "P4\n%i %i\n", WIDTH, HEIGHT);
    int i, j;
for (i = 0; i < HEIGHT; i++) {
for (j = 0; j < WIDTH; j++) {
fputc(image[i][j], output_file);
}
}
fclose(output_file);
}
This thread has been closed. You cannot post in this thread any longer.