/* tentatives de lecture des OBJ */ #include #include #include "../bubulles.h" int try_to_read_an_OBJ_file(char *fname, char *outfname, int notused); int verbosity; int main(int argc, char *argv[]) { int foo; if (2 != argc) { bubulles_version(1); exit(0); } verbosity = 1; <<<<<<< HEAD foo = try_to_read_an_OBJ_file(argv[1], "bulles.xyz", 0); fprintf(stderr, "try to read '%s' --> %d\n", argv[1], foo); ======= foo = try_to_read_an_OBJ_file(argv[1], "bubulles.asc", 0); fprintf(stderr, "try to read -> %d\n", foo); >>>>>>> 457afac7c0a208413ff6a7f1d0932da76ecf685b return 0; }