FloatImg/tools/fimg2png.c

24 lines
477 B
C
Raw Normal View History

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