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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
/*
* IRC - Internet Relay Chat, include/dbuf.h
* Copyright (C) 1990 Markku Savela
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef INCLUDED_dbuf_h
#define INCLUDED_dbuf_h
#ifndef INCLUDED_sys_types_h
#include <sys/types.h> /* size_t */
#define INCLUDED_sys_types_h
#endif
/*
* These two globals should be considered read only
*/
extern int DBufAllocCount; /* GLOBAL - count of dbufs allocated */
extern int DBufUsedCount; /* GLOBAL - count of dbufs in use */
struct DBufBuffer;
struct DBuf {
size_t length; /* Current number of bytes stored */
struct DBufBuffer *head; /* First data buffer, if length > 0 */
struct DBufBuffer *tail; /* last data buffer, if length > 0 */
};
/*
* DBufLength - Returns the current number of bytes stored into the buffer.
*/
#define DBufLength(dyn) ((dyn)->length)
/*
* DBufClear - Scratch the current content of the buffer.
* Release all allocated buffers and make it empty.
*/
#define DBufClear(dyn) dbuf_delete((dyn), DBufLength(dyn))
/*
* Prototypes
*/
extern void dbuf_delete(struct DBuf *dyn, size_t length);
extern int dbuf_put(struct DBuf *dyn, const char *buf, size_t length);
extern const char *dbuf_map(const struct DBuf *dyn, size_t *length);
extern size_t dbuf_get(struct DBuf *dyn, char *buf, size_t length);
extern size_t dbuf_getmsg(struct DBuf *dyn, char *buf, size_t length);
extern void dbuf_count_memory(size_t *allocated, size_t *used);
#endif /* INCLUDED_dbuf_h */
|