Skip to content
Snippets Groups Projects
pgm_main.c 175 B
#include "pgm.h"


int main(){
    pgm a;
    pgm_read_from_file(&a, "mandrill.pgm");
    matrix_print(a.pixels);
    matrix_destroy(&a.pixels);

    return EXIT_SUCCESS;
}