forked from tTh/FloatImg
test proggy for libpnm funcs
This commit is contained in:
parent
afac6aeff1
commit
b85b66caed
28
funcs/tpnm.c
Normal file
28
funcs/tpnm.c
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
/*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <pam.h>
|
||||||
|
|
||||||
|
#include "../floatimg.h"
|
||||||
|
|
||||||
|
int fimg_pnm_infos(char *);
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------- */
|
||||||
|
int main(int argc, char *argv[])
|
||||||
|
{
|
||||||
|
int foo;
|
||||||
|
char *infile = "foo.pnm";
|
||||||
|
|
||||||
|
pnm_init(&argc, argv);
|
||||||
|
|
||||||
|
if (2 == argc) infile = argv[1];
|
||||||
|
|
||||||
|
foo = fimg_pnm_infos(infile);
|
||||||
|
fprintf(stderr, "got %d\n", foo);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
/* --------------------------------------------------------------------- */
|
Loading…
Reference in New Issue
Block a user