File: files.h

package info (click to toggle)
epic 3.004-17.1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 5,192 kB
  • ctags: 3,197
  • sloc: ansic: 40,843; makefile: 530; sh: 129; perl: 17
file content (24 lines) | stat: -rw-r--r-- 578 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * files.h -- header file for files.c
 *
 * Direct file manipulation for irc?  Unheard of!
 * (C) 1995 Jeremy Nelson
 * See the COPYRIGHT file for copyright information
 *
 */

#ifndef FILES_H
#define FILES_H

#include "irc_std.h"

extern	int	open_file_for_read _((char *));
extern	int	open_file_for_write _((char *));
extern	int	file_write _((int, char *));
extern	int	file_writeb _((int, char *));
extern	char *	file_read _((int));
extern	char *	file_readb _((int, int));
extern	int	file_eof _((int));
extern	int	file_close _((int));
extern	int	file_valid _((int));
#endif