1
0
mirror of git://erdgeist.org/opentracker synced 2025-01-26 14:46:29 +00:00
opentracker/ot_iovec.h

16 lines
616 B
C
Raw Normal View History

2007-11-12 01:37:47 +00:00
/* This software was written by Dirk Engling <erdgeist@erdgeist.org>
It is considered beerware. Prost. Skol. Cheers or whatever. */
#ifndef __OT_IOVEC_H__
#define __OT_IOVEC_H__
void *iovec_increase( int *iovec_entries, struct iovec **iovector, size_t new_alloc );
void iovec_fixlast( int *iovec_entries, struct iovec **iovector, void *last_ptr );
2007-11-12 01:37:47 +00:00
void iovec_free( int *iovec_entries, struct iovec **iovector );
2007-11-12 01:37:47 +00:00
size_t iovec_length( int *iovec_entries, struct iovec **iovector );
void *iovec_fix_increase_or_free( int *iovec_entries, struct iovec **iovector, void *last_ptr, size_t new_alloc );
2007-11-12 01:45:33 +00:00
#endif