]> git.mxchange.org Git - flightgear.git/blob - FixObj/main.c
0a499f1f9ccb638cb27168049b17a4e2b2e2dadd
[flightgear.git] / FixObj / main.c
1 /* main.c -- read and fix the stripping order of a .obj file
2  *
3  * Written by Curtis Olson, started December 1997.
4  *
5  * Copyright (C) 1997  Curtis L. Olson  - curt@infoplane.com
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  * $Id$
22  * (Log is kept at end of this file)
23  */
24
25
26 #include <stdio.h>
27
28 #include "obj.h"
29
30
31 int main(int argc, char **argv) {
32     char basename[256];
33
34     strcpy(basename, argv[1]);
35
36     /* load the input data files */
37     obj_fix(basename);
38
39     return(0);
40 }
41
42
43 /* $Log$
44 /* Revision 1.1  1997/12/08 19:28:54  curt
45 /* Initial revision.
46 /*
47  */