Initial import of the ircii-pana-1.1-final source tree.

git-svn-id: svn://svn.code.sf.net/p/bitchx/code/tags/ircii-pana-1.1-final@1 13b04d17-f746-0410-82c6-800466cd88b0
This commit is contained in:
Kevin Easton
2008-02-25 09:25:32 +00:00
commit 28febcfea9
1429 changed files with 250653 additions and 0 deletions

27
include/files.h Normal file
View File

@@ -0,0 +1,27 @@
/*
* 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 open_file_for_bwrite (char *);
extern int file_copy (int, int);
extern int file_valid (int);
#endif