forked from tTh/FloatImg
22 lines
418 B
C
22 lines
418 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);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
/* --------------------------------------------------------------------- */
|
|
|