Rev 10 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 10 | Rev 3806 | ||
---|---|---|---|
Line 1... | Line 1... | ||
1 | /*** MAIN.C ***/ |
1 | /*** MAIN.C ***/ |
2 | 2 | ||
3 | #include <stdio.h> |
3 | #include <stdio.h> |
4 | #include <stdlib.h> /* realloc(), qsort() */ |
4 | #include <stdlib.h> /* realloc(), qsort() */ |
5 | 5 | ||
6 | #include < |
6 | #include <string.h> |
- | 7 | #include <ctype.h> |
|
7 | 8 | ||
8 | #include "vdefs.h" |
9 | #include "vdefs.h" |
9 | 10 | ||
10 | Site * nextone(void) ; |
11 | Site * nextone(void) ; |
11 | void readsites(void) ; |
12 | void readsites(void) ; |
Line 16... | Line 17... | ||
16 | Freelist sfl ; |
17 | Freelist sfl ; |
17 | 18 | ||
18 | int |
19 | int |
19 | main(int argc, char *argv[]) |
20 | main(int argc, char *argv[]) |
20 | { |
21 | { |
21 | int c ; |
- | |
22 | Site *(*next)() ; |
22 | Site *(*next)() ; |
23 | 23 | ||
24 | sorted = plot = debug = 0 ; |
24 | sorted = plot = debug = 0 ; |
25 | triangulate = 0; |
25 | triangulate = 0; |
26 | 26 |