main.c (c3aac50f284c6cca5b4f2eb46aaa13812cb8b630) | main.c (62f882d620bdfa783c01626012d69f468ba34e28) |
---|---|
1/*- 2 * Copyright (c) 1989, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * Ozan Yigit at York University. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 125 unchanged lines hidden (view full) --- 134#ifdef vms 135 "vms", MACRTYPE, 136#endif 137#endif 138}; 139 140#define MAXKEYS (sizeof(keywrds)/sizeof(struct keyblk)) 141 | 1/*- 2 * Copyright (c) 1989, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * Ozan Yigit at York University. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 125 unchanged lines hidden (view full) --- 134#ifdef vms 135 "vms", MACRTYPE, 136#endif 137#endif 138}; 139 140#define MAXKEYS (sizeof(keywrds)/sizeof(struct keyblk)) 141 |
142extern int optind; 143extern char *optarg; 144 | |
145void macro(); 146void initkwds(); | 142void macro(); 143void initkwds(); |
147extern int getopt(); | |
148 149int 150main(argc,argv) 151 int argc; 152 char *argv[]; 153{ 154 register int c; 155 register int n; --- 271 unchanged lines hidden --- | 144 145int 146main(argc,argv) 147 int argc; 148 char *argv[]; 149{ 150 register int c; 151 register int n; --- 271 unchanged lines hidden --- |