File: xio.h

package info (click to toggle)
nfs-utils 1%3A2.8.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 7,276 kB
  • sloc: ansic: 52,182; sh: 5,371; python: 2,151; makefile: 971
file content (26 lines) | stat: -rw-r--r-- 501 bytes parent folder | download | duplicates (14)
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);
int	xgetc(XFILE *xfp);
void	xungetc(int c, XFILE *xfp);
void	xskip(XFILE *xfp, char *str);
char	xskipcomment(XFILE *xfp);

#endif /* XIO_H */