FloatImg/tools/fimg2png.c

24 lines
477 B
C

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "../floatimg.h"
/* --------------------------------------------------------------------- */
int main(int argc, char *argv[])
{
// int foo;
if (3 != argc) {
fimg_print_version(1);
fprintf(stderr, "usage:\n\t%s foo.fimg bar.pnm\n", argv[0]);
exit(1);
}
fprintf(stderr, "ah ah ah, no working code here !\n");
return 0;
}
/* --------------------------------------------------------------------- */