File: globals.c

package info (click to toggle)
macutils 2.0b3-17
  • links: PTS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 1,256 kB
  • sloc: ansic: 12,737; makefile: 661
file content (27 lines) | stat: -rwxr-xr-x 372 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include "globals.h"
#include "../fileio/machdr.h"
#include "../fileio/wrfile.h"
#include "../fileio/kind.h"

struct macheader mh;

char info[INFOBYTES];
char trname[64];

int listmode;
int info_only;
int verbose;
int uneven_lines;
int to_read;
int was_macbin;

FILE *ifp;

#ifdef SCAN
void do_error(string)
char *string;
{
    do_idf(string, ERROR);
}
#endif /* SCAN */