Mercurial > noffle
view dynamicstring.c @ 4:691dc670549a noffle
[svn] Add idea with pseudo groups containing only requested articles
author | enz |
---|---|
date | Fri, 07 Jan 2000 19:01:07 +0000 |
parents | 04124a4423d4 |
children |
line wrap: on
line source
/* dynamicstring.c $Id: dynamicstring.c 3 2000-01-04 11:35:42Z enz $ */ #include "dynamicstring.h" #include <sys/types.h> #include "log.h" struct DynStr { size_t len; /* Current length (without trailing '\0') */ size_t max; /* Max length that fits into buffer (incl. trailing '\0') */ char *str; }; static void reallocStr( DynStr *self, size_t max ) { if ( max <= self->max ) return; if ( ! ( self->str = (char *)realloc( self->str, max ) ) ) { Log_err( "Realloc of DynStr failed" ); exit( EXIT_FAILURE ); } if ( self->max == 0 ) /* First allocation? */ *(self->str) = '\0'; self->max = max; } DynStr * new_DynStr( size_t reserve ) { DynStr *s; if ( ! ( s = (DynStr *) malloc( sizeof( DynStr ) ) ) ) { Log_err( "Allocation of DynStr failed" ); exit( EXIT_FAILURE ); } s->len = 0; s->max = 0; s->str = NULL; if ( reserve > 0 ) reallocStr( s, reserve + 1 ); return s; } void del_DynStr( DynStr *self ) { if ( ! self ) return; free( self->str ); self->str = NULL; free( self ); } size_t DynStr_len( const DynStr *self ) { return self->len; } const char * DynStr_str( const DynStr *self ) { return self->str; } void DynStr_app( DynStr *self, const char *s ) { size_t len; len = strlen( s ); if ( self->len + len + 1 > self->max ) reallocStr( self, self->len * 2 + len + 1 ); strcpy( self->str + self->len, s ); self->len += len; } void DynStr_appDynStr( DynStr *self, const DynStr *s ) { if ( self->len + s->len + 1 > self->max ) reallocStr( self, self->len * 2 + s->len + 1 ); memcpy( self->str + self->len, s->str, s->len + 1 ); self->len += s->len; } void DynStr_appLn( DynStr *self, const char *s ) { DynStr_app( self, s ); DynStr_app( self, "\n" ); } void DynStr_appN( DynStr *self, const char *s, size_t n ) { size_t len = self->len; if ( len + n + 1 > self->max ) reallocStr( self, len * 2 + n + 1 ); strncat( self->str + len, s, n ); self->len = len + strlen( self->str + len ); } void DynStr_clear( DynStr *self ) { self->len = 0; if ( self->max > 0 ) *(self->str) = '\0'; }