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