28 lines
394 B
C
28 lines
394 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 = 1;
|
|
|
|
foo = try_to_read_an_OBJ_file(argv[1], 0);
|
|
fprintf(stderr, "try to read -> %d\n", foo);
|
|
|
|
return 0;
|
|
}
|