Imported Upstream version 4.6.0
[debian/atlc] / src / non_gui / create_any_bitmap.c
1 /* atlc - arbitrary transmission line calculator, for the analysis of
2 transmission lines are directional couplers. 
3
4 Copyright (C) 2002. Dr. David Kirkby, PhD (G8WRB).
5
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License
8 as published by the Free Software Foundation; either package_version 2
9 of the License, or (at your option) any later package_version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
19 USA.
20
21 Dr. David Kirkby, e-mail drkirkby at ntlworld.com 
22
23 */
24
25 /* The program widestrip is a pre-processor for atlc. It produces bitmaps 
26 of a thin strip, between two wide plates */
27 #include "config.h"
28
29 #ifdef HAVE_STDLIB_H
30 #include <stdlib.h>
31 #endif  
32
33 #ifdef HAVE_STRING_H
34 #include <string.h>
35 #endif  
36 #include "definitions.h"
37 #include "exit_codes.h"
38
39 #ifdef WINDOWS
40 #pragma hrdstop
41 #include <condefs.h>
42 #endif
43
44 int verbose=0;
45
46 extern int main(int argc, char **argv) /* Read parameters from command line here   */
47 {
48   fprintf(stderr,"Sorry, create_any_bitmap is under construction and not finished\n");
49   exit(1);
50   if(argc !=2){
51     usage_create_any_bitmap();    
52     exit_with_msg_and_exit_code("",PROGRAM_CALLED_WITH_WRONG_NUMBER_OF_ARGUMENTS);
53   }
54   return(OKAY);
55 }