libbubulle/tools/read_obj.c

30 lines
352 B
C

/*
tentatives de lecture des OBJ
*/
#include <stdio.h>
#include <stdlib.h>
#include "../bubulles.h"
int try_to_read_an_OBJ_file(char *fname, int notused);
int verbosity;
int main(int argc, char *argv[])
{
int foo;
if (2 != argc) {
bubulles_version(1);
exit(0);
}
verbosity = 0;
foo = try_to_read_an_OBJ_file(argv[1], 0);
return 0;
}