chiark / gitweb /
New style mechanism.
[chiark-utils.git] / backup / rwbuffer.h
1 /*
2  * rwbuffer.h
3  * common declarations for readbuffer/writebuffer
4  *
5  * readbuffer and writebuffer are:
6  *  Copyright (C) 1997-1998,2000-2001 Ian Jackson <ian@chiark.greenend.org.uk>
7  *
8  * readbuffer is part of chiark backup, a system for backing up GNU/Linux and
9  * other UN*X-compatible machines, as used on chiark.greenend.org.uk.
10  * chiark backup is:
11  *  Copyright (C) 1997-1998,2000-2001 Ian Jackson <ian@chiark.greenend.org.uk>
12  *  Copyright (C) 1999 Peter Maydell <pmaydell@chiark.greenend.org.uk>
13  *
14  * This is free software; you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License as
16  * published by the Free Software Foundation; either version 2,
17  * or (at your option) any later version.
18  *
19  * This is distributed in the hope that it will be useful, but
20  * WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public
25  * License along with this file; if not, write to the Free Software
26  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27  *
28  */
29
30 #ifndef RWBUFFER_H
31 #define RWBUFFER_H
32
33 int min(int a, int b);
34 void callselect(void);
35 void startup(const char *const *argv);
36
37 extern const char *progname; /* must be defined by main .c file */
38
39 extern unsigned char *buf, *wp, *rp;
40 extern int used, seeneof;
41 extern size_t buffersize;
42 extern fd_set readfds;
43 extern fd_set writefds;
44
45 #endif /*RWBUFFER_H*/