2013-05-20 01:16:08 -04:00
|
|
|
#ifndef _BUFFER_H_
|
|
|
|
#define _BUFFER_H_
|
|
|
|
|
|
|
|
#include "estruct.h"
|
|
|
|
|
|
|
|
int usebuffer( int f, int n) ;
|
|
|
|
int nextbuffer( int f, int n) ;
|
|
|
|
int swbuffer( struct buffer *bp) ;
|
|
|
|
int killbuffer( int f, int n) ;
|
|
|
|
int zotbuf( struct buffer *bp) ;
|
|
|
|
int namebuffer( int f, int n) ;
|
|
|
|
int listbuffers( int f, int n) ;
|
|
|
|
int anycb( void) ;
|
|
|
|
int bclear( struct buffer *bp) ;
|
|
|
|
int unmark( int f, int n) ;
|
|
|
|
/* Lookup a buffer by name. */
|
2013-06-12 02:27:09 -04:00
|
|
|
struct buffer *bfind( const char *bname, int cflag, int bflag) ;
|
2013-05-20 01:16:08 -04:00
|
|
|
|
|
|
|
#endif
|