/* This software was written by Dirk Engling It is considered beerware. Prost. Skol. Cheers or whatever. $id$ */ #ifndef OT_IOVEC_H__ #define OT_IOVEC_H__ #include 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 ); void iovec_free( int *iovec_entries, struct iovec **iovector ); 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 ); #endif