/*
CASM.C -- Written by Leor Zolman, 2/82
"C Assembly Language" preprocessor. Prepares .CSM-coded assembly
language source files for assembly using ASM.COM or MAC.COM.
See the CASM Appendix in the BDS C User's Guide for complete info.
Modifications:
Adapted for v1.6, 5/86, LZ
Adapted For v1.5, 11/14/82, LZ
Enable n-level nested INCLUDEs, Cliff Lasser & Leor Zolman, 1/85
Made to work with with CTOA CRL-to-ASM postprocessor, 11/83, K. Kenny
Compile and link:
cc casm.c -o -e4b00
l2 casm
(or) clink casm [-n]
*/
#include <stdio.h>
#define TITLE "BD Software CRL-format ASM Preprocessor v1.60\n"
/*
* Customizable definitions:
*/
#define VIDEO 1 /* true for video terminal, false otherwise */
#define DEFUSER "" /* default "include file" user area prefix */
/* form: "nn/", or "" for currently logged */
#define DEFDISK "" /* default disk for include files */
/* form: "d:" , or "" for currently logged */
#define CASMEXT ".CSM" /* extension on input files */
#define ASMEXT ".ASM" /* extension on output files */
#define SUBFILE "A:$$$.SUB" /* Submit file to erase on error. To not */
/* erase any, use a null string ("") */
#define CONTROL_C 3 /* Abort character */
#define EQUMAX 500 /* maximum number of EQU ops */
#define FUNCMAX 100 /* maximum number of functions */
#define NFMAX 25 /* max no. of extern funcs in one function */
#define LABMAX 150 /* max number of local labels in one func */
#define TXTBUFSIZE 2000 /* max text for labels & extern func. names */
#define NESTMAX 3 /* max nesting of includes */
/*
* End of customizable section
*/
#define DIRSIZE 512 /* max # of byte in CRL directory */
#define TPALOC 0x100 /* base of TPA in your system */
/* Global data used throughout processing
of the input file: */
FILE *fptab[NESTMAX]; /* input file pointer table */
FILE *cfp; /* currently active input file pointer */
FILE *ofp; /* FP for output file */
char *cfname; /* pointer to name of current input file */
char iname[NESTMAX][30]; /* filenames for current input files */
char oname[30]; /* filename of output file */
int nestlev; /* nest level: 0 for top, max NESTMAX-1 */
char wrkbuf[30];
char *equtab[EQUMAX]; /* table of absolute symbols */
int equcount; /* # of entries in equtab */
char *fnames[FUNCMAX]; /* list of functions in the source file */
int fcount; /* # of entries in fnames */
int lino,savlino[NESTMAX]; /* line number values used for error */
/* reporting. */
char doingfunc; /* true if currently processing a function */
char errf; /* true if an error has been detected */
char verbose; /* true to insert wordy comments in output */
char careful; /* true to detect old CMAC.LIB macros */
char blankflag; /* true if last line processed was null */
char debug; /* true if debugging option given */
/* Global data used during the processing of a
single function in the source file: */
char *nflist[NFMAX]; /* list of needed functions for a function */
int nfcount; /* number of entries in nflist */
struct {
char *labnam; /* name of function label */
char defined; /* whether it has been defined yet */
} lablist[LABMAX];
int labcount; /* number of local labels in a function */
char txtbuf[TXTBUFSIZE], /* where text of needed function names */
*txtbufp; /* and function labels go */
char linbuf[MAXLINE], /* text line buffers */
linsav[MAXLINE],
workbuf[MAXLINE],
undrbuf[MAXLINE],
pbuf[MAXLINE], *pbufp;
char *cfunam; /* pointer to name of current function */
int relblc; /* relocation object count for a function */
char pastnfs; /* true if we've passed all needed function */
/* declarations ("external" pseudo ops) */
int argcnt; /* values set by the "parse_line" function */
char *label,
*op,
*argsp,
*args[40];
char *gpcptr; /* general-purpose text pointer */
/*
* Open main input file, open output file, initialize needed globals
* and process the file:
*/
main(aarghc,aarghv)
char **aarghv;
{
int i,j,k;
char c, *inpnam, *outnam;
initequ(); /* initialize EQU table with reserved words */
fcount = 0; /* haven't seen any functions yet */
doingfunc = FALSE; /* not currently processing a function */
errf = FALSE; /* no errors yet */
verbose = careful = debug = FALSE;
inpnam = outnam = NULL; /* haven't seen any names yet */
blankflag = FALSE; /* haven't just processed a null line */
nestlev = 0; /* at top level to start with */
while (--aarghc)
{
++aarghv; /* bump to next arg text */
if (**aarghv == '-')
{
switch(c = aarghv[0][1])
{
case 'F':
careful = 1;
break;
case 'C':
verbose = 1;
break;
case 'O':
if (aarghv[0][2])
outnam = &aarghv[0][2];
else if (--aarghc)
outnam = *++aarghv;
else goto usage;
break;
case 'D':
debug = TRUE;
break;
default: goto usage;
}
}
else
inpnam = *aarghv;
}
if (!inpnam) {
usage
: puts("Usage:\tcasm [-f] [-c] [-o <name>] <filename>\n");
puts("-F: flag old CMAC.LIB macros if spotted\n");
puts("-C: don't strip comments from input and output\n");
puts("-O <name>: Call the output file <name>.ASM\n");
}
/* set up filenames with proper extensions: */
for (i = 0; (c = inpnam[i]) && c != '.'; i++)
iname[0][i] = c;
iname[0][i] = '\0';
strcpy(oname
, outnam
? outnam
: iname
[0]);
strcat(iname
[0],CASMEXT
); /* input filename */
cfname = iname[0]; /* current filename pointer */
if ((cfp
= fopen(cfname
, "r")) == NULL
)
fptab[0] = cfp;
if (debug)
if (!hasdot(oname))
strcat(oname
,ASMEXT
); /* output filename */
if ((ofp
= fopen(oname
, "w")) == NULL
)
/* begin writing output file */
fprintf2(ofp,"\nTPALOC\t\tEQU\t%04xH\n",TPALOC);
fprintf2(ofp,"\nSYS$EXTFLAG\tSET\t0\n");
fprintf2(ofp,"SYS$EXTADDR\tSET\t0\n");
fprintf2(ofp,"SYS$EXTSIZE\tSET\t0\n");
fprintf2(ofp,"\t\tORG\tTPALOC+0205H\n\n");
lino = 1; /* initialize line count */
while (get_line()) { /* main loop */
if (kbhit
() && getchar() == CONTROL_C
)
abort("Aborted by ^C\n");
process_line(); /* process lines till EOF */
lino++;
}
if (doingfunc) /* if ends inside a function, error */
abort("File ends, but last function is unterminated\n");
if (errf)
{
puts("Fix those errors and try again...");
unlink(oname);
if (*SUBFILE)
unlink(SUBFILE);
}
else
{
/* end of functions */
fputs2("\nEND$CRL\t\tEQU\t$-TPALOC\n",ofp);
putdir(); /* now put out CRL directory */
fputs2("\t\tEND\n",ofp); /* end of ASM file */
fputc(CPMEOF
,ofp
); /* CP/M EOF character */
fclose(cfp
); /* close input file */
fclose(ofp
); /* close output file */
printf("%s is ready to be assembled.\n",oname
);
}
}
/*
* Get a line of text from input stream, and process
* "include" ops on the fly:
*/
int get_line()
{
int i;
top: if (!fgets2(linbuf, MAXLINE, cfp)) { /* on EOF: */
if (nestlev) { /* in "include" file? */
fclose(cfp
); /* yes; return to previous; */
cfp = fptab[--nestlev]; /* restore buffer ptr */
cfname = iname[nestlev]; /* and filename */
lino = savlino[nestlev] + 1; /* and line no. */
return get_line();
}
else return NULL;
}
if (!verbose) /* strip commments, default */
{
for (i = 0; linbuf[i]; i++)
{
if (linbuf[i] == ';')
{
i--;
if (!i && blankflag)
{
lino++;
goto top;
}
blankflag = TRUE;
break;
}
if (linbuf[i] == '\'' || linbuf[i] == '"')
break;
}
if (!linbuf[i])
blankflag = FALSE;
}
parse_line(); /* not EOF. Parse line */
if (streq(op,"INCLUDE") || /* check for file inclusion */
streq(op,"MACLIB")) {
if (nestlev == NESTMAX) /* if nested to the max, error */
abort("Only %d inclusion level[s] allowed",NESTMAX
);
if (!argsp)
abort("No filename specified");
/* set up for inclusion */
savlino[nestlev++] = lino;
for (i
= 0; !isspace(argsp
[i
]); i
++) /* put null after */
; /* filename */
argsp[i] = '\0';
*wrkbuf = '\0';
if (*argsp == '<') { /* look for magic delimiters */
if (argsp[2] != ':') /* if no explicit disk given */
strcat(wrkbuf
,DEFDISK
); /* then use default */
if (wrkbuf
[i
= strlen(wrkbuf
) - 1] == '>')
wrkbuf[i] = '\0';
} else if (*argsp == '"') {
if (wrkbuf
[i
= strlen(wrkbuf
) - 1] == '"')
wrkbuf[i] = '\0';
} else
while ((cfp
= fopen(wrkbuf
, "r")) == NULL
)
if (hasdot(wrkbuf))
abort("Missing include file: %s\n", wrkbuf
);
else
strcpy(&iname
[nestlev
], wrkbuf
);
cfname = iname[nestlev];
fptab[nestlev] = cfp;
lino = 1;
return get_line();
}
return 1;
}
parse_line()
{
int i;
char c;
label = op = argsp = NULL;
argcnt = 0;
strcpy2(pbuf,linbuf);
strcpy2(linsav,linbuf);
pbufp = pbuf;
if (!*pbufp) return; /* ignore null lines */
if (c == ';')
return; /* totally ignore comment lines */
label = pbufp; /* set pointer to label */
while (isidchr(*pbufp)) /* pass over label identifier */
pbufp++;
*pbufp++ = '\0'; /* place null after identifier */
}
skip_wsp(&pbufp);
if (!*pbufp || *pbufp == ';')
return;
op = pbufp; /* set pointer to op mnemonic */
pbufp++; /* skip over the op */
if (*pbufp) *pbufp++ = '\0'; /* place null after the op */
/* now process arguments */
skip_wsp(&pbufp);
if (!*pbufp || *pbufp == ';')
return;
argsp = linsav + (pbufp - pbuf); /* set pointer to arg list */
/* create vector of ptrs to all args
that are possibly relocatable */
for (argcnt = 0; argcnt < 40;) {
while (!isidstrt(c = *pbufp))
if (!c || c == ';')
return;
else
pbufp++;
if (isidchr(*(pbufp - 1))) {
pbufp++;
continue;
}
args[argcnt++] = pbufp;
while (isidchr(*pbufp)) pbufp++;
if (*pbufp) *pbufp++ = '\0';
}
error("Too many operands in this instruction for me to handle\n");
}
process_line()
{
char *cptr, c;
int i,j;
if (op) {
/* check for definitions of global data that will be
exempt from relocation when encountered in the
argument field of assembly instructions: */
if (streq(op,"EQU") || streq(op,"SET") ||
(!doingfunc &&
(streq(op,"DS") || streq(op,"DB") || streq(op,"DW"))))
{
fputnam(ofp,linbuf);
cptr
= sbrk2
(strlen(label
) + 1);
equtab[equcount++] = cptr;
if (equcount >= EQUMAX)
"Too many EQU lines...increase 'EQUMAX' and recompile CASM");
return;
}
if (streq(op,"EXTERNAL")) {
"'External's for a function must appear inside the function");
if (pastnfs) error(
"Externals must all be together at start of function\n");
for (i = 0; i < argcnt; i++) {
nflist[nfcount++] = txtbufp;
bumptxtp(args[i]);
}
if (nfcount >= NFMAX) {
printf("Too many external functions in function \"%s\"\n",
cfunam);
abort("Change the NFMAX constant and recompile CASM");
}
return;
}
if (streq(op,"FUNCTION")) {
if (doingfunc) {
printf("'Function' op encountered in a function.\n");
abort("Did you forget an 'endfunc' op?");
}
if (!argcnt)
abort("A name is required for the 'function' op");
cfunam
= sbrk2
(strlen(args
[0]) + 1);
fnames[fcount++] = cfunam;
#if VIDEO
printf("Processing the %s function... \r",cfunam
);
#endif
doingfunc = 1;
txtbufp = txtbuf;
labcount = 0;
nfcount = 0;
pastnfs = 0;
if (verbose)
fprintf2(ofp,"\n\n; The \"%s\" function:\n",cfunam);
fputnam(ofp, cfunam);
fputs2("$BEG\tEQU\t$-TPALOC\n", ofp);
return;
}
if (streq(op,"ENDFUNC") || streq(op,"ENDFUNCTION")) {
if (!doingfunc)
abort("'Endfunc' op encountered while not in a function");
if (!pastnfs) flushnfs(); /* flush needed function list */
fputnam (ofp, cfunam);
fputs2("$END\tEQU\t$\n", ofp);
doreloc(); /* flush relocation parameters */
for (i = 0; i < labcount; i++) /* detect undefined labels */
if (!lablist[i].defined) {
printf("The label %s in function %s is undefined\n",
lablist[i].labnam,cfunam);
errf = 1;
}
doingfunc = 0;
return;
}
}
if (careful)
if (streq(op,"RELOC") || streq(op,"DWREL") || streq(op,"DIRECT") ||
streq(op,"ENDDIR") || streq(op,"EXREL") || streq(op,"EXDWREL") ||
streq(op,"PRELUDE") || streq(op,"POSTLUDE") || streq(op,"DEFINE"))
error("Old macro '%s' leftover from \"CMAC.LIB\" days...\n",
op);
/* Don't scan conditional pseudo op lines */
if (streq(op,"IF") || streq(op,"ENDIF"))
return fputnam(ofp,linbuf);
/* No special pseudo ops, so now process
the line as a line of assemby code: */
if (streq(op,"END")) return; /* don't allow "end" yet */
if (!doingfunc || (!label && !op)) /* if nothing interesting on */
return fputnam(ofp,linbuf); /* line, ignore it */
if (!pastnfs) /* if haven't flushed needed */
flushnfs(); /* function list yet, do it */
/* check for possible label */
if (label) {
sprintf (undrbuf
, "%s$L$%s\tEQU\t$-%s$STRT\n",
cfunam, label, cfunam);
fputnam (ofp,undrbuf);
for (i=0; linbuf[i]; i++)
if (isspace(linbuf
[i
]) || linbuf
[i
] == ':')
break;
else
linbuf[i] = ' ';
if (linbuf[i] == ':') linbuf[i] = ' ';
for (i = 0; i < labcount; i++) /* check if in label table */
if (streq(label,lablist[i].labnam)) { /* if found, */
if (lablist[i].defined) { /* check for redefinition */
error("Re-defined label:");
printf("%s, in function %s\n",
lablist[i].labnam,cfunam);
}
else
lablist[i].defined = 1;
goto out;
}
lablist[i].labnam = txtbufp; /* add new entry to */
lablist[i].defined = 1; /* label list */
bumptxtp(label);
if (labcount++ >= LABMAX)
error("Label table overflow. Increase LABMAX");
}
out:
if (!op) return fputnam (ofp, linbuf); /* if label only, all done */
/* if a non-relocatable op, */
if (norelop(op)) return fputnam(ofp,linbuf); /* then we're done */
if (argcnt && doingfunc)
for (i = 0; i < argcnt; i++) {
if (gpcptr = isef(args[i]))
sprintf(workbuf
,"%s$EF$%s-%s$STRT",
cfunam,gpcptr,cfunam);
else if (norel(args[i])) continue;
else {
sprintf(workbuf
,"%s$L$%s",cfunam
,args
[i
]);
for (j = 0; j < labcount; j++)
if (streq(args[i],lablist[j].labnam))
goto out2;
lablist[j].labnam = txtbufp; /* add new entry to */
lablist[j].defined = 0; /* label list */
bumptxtp(txtbufp);
labcount++;
}
out2:
replstr
(linbuf
, workbuf
, args
[i
] - pbuf
, strlen(args
[i
]));
if (streq(op,"DW")) {
sprintf (undrbuf
, "%s$R%03d\tEQU\t$-%s$STRT\n",
cfunam, relblc++, cfunam);
fputnam (ofp, undrbuf);
if (argcnt > 1)
error("Only one relocatable value allowed per DW\n");
}
else {
sprintf (undrbuf
,"%s$R%03d\tEQU\t$+1-%s$STRT\n",
cfunam, relblc++, cfunam);
fputnam (ofp, undrbuf);
}
break;
}
fputnam (ofp, linbuf);
}
/*
Test for ops in which there is guanranteed to be no need
for generation of relocation parameters. Note that the list
of non-relocatable ops doesn't necessarily have to be complete,
because for any op that doesn't match, an argument must still
pass other tests before it is deemed relocatable. This only
speeds things up by telling the program not to bother checking
the arguments.
*/
norelop(op)
char *op;
{
if (streq(op,"MOV")) return 1;
if (streq(op,"INR")) return 1;
if (streq(op,"DCR")) return 1;
if (streq(op,"INX")) return 1;
if (streq(op,"DCX")) return 1;
if (streq(op,"DAD")) return 1;
if (streq(op,"MVI")) return 1;
if (streq(op,"DB")) return 1;
if (streq(op,"DS")) return 1;
if (op[2] == 'I') {
if (streq(op,"CPI")) return 1;
if (streq(op,"ORI")) return 1;
if (streq(op,"ANI")) return 1;
if (streq(op,"ADI")) return 1;
if (streq(op,"SUI")) return 1;
if (streq(op,"SBI")) return 1;
if (streq(op,"XRI")) return 1;
if (streq(op,"ACI")) return 1;
}
if (streq(op,"ORG")) return 1;
if (streq(op,"TITLE")) return 1;
if (streq(op,"PAGE")) return 1;
if (streq(op,"EJECT")) return 1;
if (streq(op,"MACRO")) return 1;
return 0;
}
flushnfs()
{
int i,j, length;
pastnfs = 1;
relblc = 0;
if (verbose)
fputs2("\n\n; List of needed functions:\n",ofp);
for (i=0; i < nfcount; i++) {
length = length < 8 ? length : 8;
for (j = 0; j < length - 1; j++)
workbuf[6+j] = nflist[i][j];
workbuf[6+j] = '\0';
fprintf2(ofp,"%s','%c'+80H\n",workbuf,nflist[i][j]);
}
fputs2("\t\tDB\t0\n",ofp);
if (verbose)
fputs2("\n; Length of body:\n",ofp);
sprintf(undrbuf
,"\t\tDW\t%s$END-$-2\n",cfunam
);
fputnam (ofp, undrbuf);
if (verbose)
fputs2("\n; Body:\n",ofp);
sprintf(undrbuf
,"%s$STRT\tEQU\t$\n",cfunam
);
fputnam (ofp, undrbuf);
if (nfcount) {
sprintf(undrbuf
,"%s$R%03d\tEQU\t$+1-%s$STRT\n",
cfunam,relblc++,cfunam);
fputnam (ofp, undrbuf);
sprintf(undrbuf
,"\t\tJMP\t%s$STRTC-%s$STRT\n",cfunam
,cfunam
);
fputnam (ofp, undrbuf);
}
sprintf(undrbuf
,"%s$EF$%s\tEQU\t%s$STRT\n",cfunam
,cfunam
,cfunam
);
fputnam (ofp, undrbuf);
for (i=0; i < nfcount; i++) {
sprintf(undrbuf
,"%s$EF$%s\tJMP\t0\n",cfunam
,nflist
[i
]);
fputnam (ofp, undrbuf);
}
sprintf(undrbuf
,"\n%s$STRTC\tEQU\t$\n",cfunam
);
fputnam (ofp, undrbuf);
}
doreloc()
{
int i;
if(verbose)
fputs2("\n; Relocation parameters:\n",ofp);
fprintf2(ofp,"\t\tDW\t%d\n",relblc);
for(i = 0; i < relblc; i++)
fprintf2(ofp,"\t\tDW\t%s$R%03d\n",cfunam,i);
fputs2("\n",ofp);
}
putdir()
{
int i,j, length;
int bytecount;
bytecount = 0;
fputs2("\n\t\tORG\tTPALOC\n\n; Directory:\n",ofp);
for (i = 0; i < fcount; i++) {
length = length < 8 ? length : 8;
for (j = 0; j < length - 1; j++)
workbuf[6+j] = fnames[i][j];
workbuf[6+j] = '\0';
fprintf2(ofp,"%s','%c'+80H\n",workbuf,fnames[i][j]);
sprintf(undrbuf
,"\t\tDW\t%s$BEG\n",fnames
[i
]);
fputnam (ofp, undrbuf);
bytecount += (length + 2);
}
fputs2("\t\tDB\t80H\n\t\tDW\tEND$CRL\n",ofp);
bytecount += 3;
if (bytecount > DIRSIZE) {
printf("CRL Directory size will exceed 512 bytes;\n");
printf("Break the file up into smaller chunks, please!\n");
}
fputs2("\n\n; External information:\n", ofp);
fputs2("\t\tORG\tTPALOC+0200H\n", ofp);
fputs2("\t\tIF\tSYS$EXTFLAG\n", ofp);
fputs2("\t\tDB\t0BDH\n", ofp);
fputs2("\t\tDW\tSYS$EXTADDR\n", ofp);
fputs2("\t\tENDIF\n", ofp);
fputs2("\t\tIF\tNOT SYS$EXTFLAG\n", ofp);
fputs2("\t\tDB\t0, 0, 0\n", ofp);
fputs2("\t\tENDIF\n", ofp);
fputs2("\t\tDW\tSYS$EXTSIZE\n", ofp);
}
initequ()
{
equtab[0] = "A";
equtab[1] = "B";
equtab[2] = "C";
equtab[3] = "D";
equtab[4] = "E";
equtab[5] = "H";
equtab[6] = "L";
equtab[7] = "M";
equtab[8] = "SP";
equtab[9] = "PSW";
equtab[10]= "AND";
equtab[11]= "OR";
equtab[12]= "MOD";
equtab[13]= "NOT";
equtab[14]= "XOR";
equtab[15]= "SHL";
equtab[16]= "SHR";
equcount = 14;
}
int isidchr(c) /* return true if c is legal character in identifier */
char c;
{
}
int isidstrt(c) /* return true if c is legal as first char of idenfitier */
char c;
{
}
int streq(s1, s2) /* return true if the two strings are equal */
char *s1, *s2;
{
if (*s1 != *s2) return 0; /* special case for speed */
while (*s1) if (*s1++ != *s2++) return 0;
return (*s2) ? 0 : 1;
}
skip_wsp(strptr) /* skip white space at *strptr and modify the ptr */
char **strptr;
{
while (isspace(**strptr
)) (*strptr
)++;
}
strcpy2(s1,s2) /* copy s2 to s1, converting to upper case as we go */
char *s1, *s2;
{
while (*s2)
*s1 = '\0';
}
/*
General-purpose string-replacement function:
'string' is pointer to entire string,
'insstr' is pointer to string to be inserted,
'pos' is the position in 'string' where 'insstr'
is to be inserted
'lenold' is the length of the substring in 'string'
that is being replaced.
*/
replstr(string, insstr, pos, lenold)
char *string, *insstr;
{
int length, i, j, k, x;
k = x - lenold;
i = string + pos + lenold;
if (k) movmem(i, i+k, length - (pos + lenold) + 1);
for (i = 0, j = pos; i < x; i++, j++)
string[j] = insstr[i];
}
/* Function to put text to the output file, replacing underscores with
cues to keep ASM happy. */
fputnam (file, str)
FILE *file;
char *str;
{
char c;
char quoted;
quoted = FALSE;
while (c = *str++) {
if (c == '\'') quoted ^= 1;
else if (c == '\n') putc2 ('\r', file);
if (c == '_' && !quoted) putc2 ('Q', file);
else putc2 (c, file);
}
}
putc2(c,file)
FILE *file;
{
if (debug)
else
}
error(msg,arg1,arg2)
char *msg;
{
printf("\n\7%s: %d: ",cfname
,lino
);
errf = 1;
}
char *msg;
{
int i;
error(msg,arg1,arg2);
for (i = nestlev; i >= 0; i--)
if (*SUBFILE)
unlink(SUBFILE);
}
sbrk2(n) /* allocate storage and check for out of space condition */
{
int i;
if ((i = sbrk(n)) == ERROR)
abort("Out of storage allocation space\n");
return i;
}
bumptxtp(str) /* bump txtbufp by size of given string + 1 */
char *str;
{
if (txtbufp >= txtbuf + (TXTBUFSIZE - 8))
abort("Out of text space. Increase TXTBUFSIZE and recompile CASM");
}
int norel(id) /* return true if identifier is exempt from relocatetion */
char *id;
{
if (isequ(id)) return 1;
return 0;
}
int isequ(str) /* return true if given string is in the EQU table */
char *str;
{
int i;
for (i = 0; i < equcount; i++)
if (streq(str,equtab[i]))
return 1;
return 0;
}
char *isef(str) /* return nflist entry if given string is an external */
char *str; /* function name */
{
int i;
for (i = 0; i < nfcount; i++)
if (streq(str,nflist[i]))
return nflist[i];
return 0;
}
int hasdot(str) /* return true if given string has a dot in it */
char *str;
{
while (*str)
if (*str++ == '.')
return TRUE;
return FALSE;
}
fgets2(arg1, arg2, arg3)
{
int i;
i
= fgets(arg1
, arg2
, arg3
);
if (debug)
printf("\n fgets got --> %s\n",arg1
);
return i;
}
fputs2(arg1,arg2)
{
if (debug)
else
if (fputs(arg1
,arg2
) == ERROR
)
abort("Out of disk space for output file.");
}
fprintf2(arg1,arg2,arg3,arg4,arg5)
{
if (debug)
printf(arg2
, arg3
, arg4
, arg5
);
else
if (fprintf(arg1
,arg2
,arg3
,arg4
,arg5
) == ERROR
)
abort("Out of disk space for output file.");
}