mirror of git://erdgeist.org/opentracker
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
521 B
C
14 lines
521 B
C
17 years ago
|
/* 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__
|
||
|
|
||
|
#include <sys/uio.h>
|
||
|
|
||
|
void *iovec_increase( int *iovec_entries, struct iovec **iovector, size_t new_alloc );
|
||
|
void iovec_fixlast( int *iovec_entries, struct iovec **iovector, size_t new_alloc );
|
||
|
void iovec_free( int *iovec_entries, struct iovec **iovector );
|
||
|
size_t iovec_length( int *iovec_entries, struct iovec **iovector );
|
||
|
|
||
|
#endif
|