summaryrefslogtreecommitdiffstats
path: root/support/include/xio.h
blob: 858f5bbd846a38dc486b23b36ed0e11736c19a7b (plain)
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
/*
 * xio.h	Declarations for simple parsing functions.
 *
 */

#ifndef XIO_H
#define XIO_H

#include <stdio.h>

typedef struct XFILE {
	FILE		*x_fp;
	int		x_line;
} XFILE;

XFILE	*xfopen(char *fname, char *type);
int	xflock(char *fname, char *type);
void	xfunlock(int lockid);
void	xfclose(XFILE *xfp);
int	xgettok(XFILE *xfp, char sepa, char *tok, int len);
char	xgetc(XFILE *xfp);
void	xungetc(char c, XFILE *xfp);
void	xskip(XFILE *xfp, char *str);
char	xskipcomment(XFILE *xfp);

#endif /* XIO_H */