ngircd-tor/src/ngircd/array.h

105 lines
3.4 KiB
C
Raw Normal View History

2005-07-07 20:38:14 +02:00
/*
* 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 of the License, or
* (at your option) any later version.
* Please read the file COPYING, README and AUTHORS for more information.
*
* libarray - dynamically allocate arrays.
* Copyright (c) 2005 Florian Westphal (westphal@foo.fh-furtwangen.de)
*/
#ifndef array_h_included
#define array_h_included
/**
* @file
* Functions to dynamically allocate arrays (header).
*/
2005-07-07 20:38:14 +02:00
#include "portab.h"
typedef struct {
char * mem;
2005-08-30 15:36:32 +02:00
size_t allocated;
size_t used;
2005-07-07 20:38:14 +02:00
} array;
/* allocated: mem != NULL, used >= 0 && used <= allocated, allocated > 0
unallocated: mem == NULL, allocated == 0, used == 0 */
#define array_unallocated(x) (array_bytes(x)==0)
#define INIT_ARRAY { NULL, 0, 0 }
/* set all variables in a to 0 */
extern void array_init PARAMS((array *a));
2005-07-07 20:38:14 +02:00
/* allocates space for at least nmemb+1 elements of size bytes each.
2005-07-14 11:11:38 +02:00
return pointer to elem at pos, or NULL if realloc() fails */
2005-08-30 15:36:32 +02:00
extern void * array_alloc PARAMS((array *a, size_t size, size_t pos));
2005-07-07 20:38:14 +02:00
/* returns the number of initialized BYTES in a. */
#define array_bytes(array) ( (array)->used )
/* returns the number of initialized ELEMS in a. */
2005-08-30 15:36:32 +02:00
extern size_t array_length PARAMS((const array* const a, size_t elemsize));
2005-07-07 20:38:14 +02:00
/* _copy functions: copy src to dest.
2005-07-14 11:11:38 +02:00
return true if OK, else false (e. g. realloc failure, invalid src/dest
array, ...). In that case dest is left unchanged. */
2005-07-07 20:38:14 +02:00
/* copy array src to dest */
extern bool array_copy PARAMS((array* dest, const array* const src));
/* copy len bytes from src to array dest. */
2005-08-30 15:36:32 +02:00
extern bool array_copyb PARAMS((array* dest, const char* src, size_t len));
2005-07-07 20:38:14 +02:00
/* copy string to dest */
extern bool array_copys PARAMS((array* dest, const char* src));
/* _cat functions: append src to dest.
2005-07-14 11:11:38 +02:00
return true if OK, else false (e. g. realloc failure, invalid src/dest
array, ...). In that case dest is left unchanged. */
2005-07-07 20:38:14 +02:00
/* append len bytes from src to array dest. */
2005-08-30 15:36:32 +02:00
extern bool array_catb PARAMS((array* dest, const char* src, size_t len));
2005-07-07 20:38:14 +02:00
/* append string to dest */
extern bool array_cats PARAMS((array* dest, const char* src));
/* append NUL byte to dest */
extern bool array_cat0 PARAMS((array* dest));
/* append NUL byte to dest, but do not count null byte */
extern bool array_cat0_temporary PARAMS((array* dest));
2005-07-07 20:38:14 +02:00
/* append contents of array src to array dest. */
extern bool array_cat PARAMS((array* dest, const array* const src));
/* return pointer to element at pos.
2005-07-14 11:11:38 +02:00
return NULL if the array is unallocated or if pos is larger than the number
of elements stored int the array. */
2005-08-30 15:36:32 +02:00
extern void* array_get PARAMS((array* a, size_t membersize, size_t pos));
2005-07-07 20:38:14 +02:00
/* free the contents of this array. */
extern void array_free PARAMS((array* a));
/* overwrite array with zeros before free */
2005-07-07 20:38:14 +02:00
extern void array_free_wipe PARAMS((array* a));
/* return pointer to first element in this array */
extern void* array_start PARAMS((const array* const a));
/* reset this array (the memory is not free'd */
extern void array_trunc PARAMS((array* a));
/* set number of used elements in this array to len */
2005-08-30 15:36:32 +02:00
extern void array_truncate PARAMS((array* a, size_t membersize, size_t len));
2005-07-07 20:38:14 +02:00
/* move elements starting at pos to beginning of array */
2005-08-30 15:36:32 +02:00
extern void array_moveleft PARAMS((array* a, size_t membersize, size_t pos));
2005-07-07 20:38:14 +02:00
#endif
2005-07-14 11:11:38 +02:00
2005-07-07 20:38:14 +02:00
/* -eof- */