ack/lang/cem/cpp.ansi/input.c

66 lines
1.2 KiB
C
Raw Permalink Normal View History

1989-10-23 10:35:56 +00:00
/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
1994-06-24 14:02:31 +00:00
/* $Id$ */
1989-10-23 10:35:56 +00:00
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
1989-10-23 10:35:56 +00:00
#include "file_info.h"
#include "input.h"
#include "error.h"
#include "replace.h"
1989-10-23 10:35:56 +00:00
#define INP_PUSHBACK 3
#define INP_TYPE struct file_info
#define INP_VAR finfo
struct file_info finfo;
#include <inp_pkg.body>
#include <alloc.h>
1989-10-23 10:35:56 +00:00
char *getwdir(register char *fn)
1989-10-23 10:35:56 +00:00
{
register char *p;
char *strrchr();
1989-10-23 10:35:56 +00:00
p = strrchr(fn, '/');
1989-10-23 10:35:56 +00:00
while (p && *(p + 1) == '\0') { /* remove trailing /'s */
*p = '\0';
p = strrchr(fn, '/');
1989-10-23 10:35:56 +00:00
}
if (fn[0] == '\0' || (fn[0] == '/' && p == &fn[0])) /* absolute path */
return "";
if (p) {
*p = '\0';
1990-04-25 15:10:13 +00:00
fn = Salloc(fn, (unsigned)(p - &fn[0] + 1));
1989-10-23 10:35:56 +00:00
*p = '/';
return fn;
}
return ".";
}
int NoUnstack;
int InputLevel;
int AtEoIT(void)
1989-10-23 10:35:56 +00:00
{
InputLevel--;
/* if (NoUnstack) warning("unexpected EOF"); ??? */
unstackrepl();
return 0;
}
int AtEoIF(void)
1989-10-23 10:35:56 +00:00
{
extern int nestlevel;
extern int nestcount;
extern int svnestlevel[];
if (nestlevel > svnestlevel[nestcount]) warning("missing #endif");
else if (NoUnstack) warning("unexpected EOF");
nestlevel = svnestlevel[nestcount--];
return 0;
}