Mercurial > noffle
view src/dynamicstring.h @ 53:9f3a4eccce32 noffle
[svn] Use numbers for sections. Added using Noffle as a maillist newsgroup gateway.
author | enz |
---|---|
date | Mon, 08 May 2000 17:52:14 +0100 |
parents | 32ba1198c6fa |
children | e612b263934f |
line wrap: on
line source
/* dynamicstring.h String utilities $Id: dynamicstring.h 51 2000-05-05 23:49:38Z uh1763 $ */ #ifndef DYNAMICSTRING_H #define DYNAMICSTRING_H #if HAVE_CONFIG_H #include <config.h> #endif #include <sys/types.h> /* A dynamically growing string */ struct DynStr; typedef struct DynStr DynStr; /* Create new DynStr with given capacity */ DynStr * new_DynStr( size_t reserve ); /* Delete DynStr */ void del_DynStr( DynStr *self ); /* Return DynStr's length */ size_t DynStr_len( const DynStr *self ); /* Return DynStr's content ptr */ const char * DynStr_str( const DynStr *self ); /* append C-string to DynStr */ void DynStr_app( DynStr *self, const char *s ); /* append a DynStr to DynStr */ void DynStr_appDynStr( DynStr *self, const DynStr *s ); /* Append C-string + newline to DynStr */ void DynStr_appLn( DynStr *self, const char *s ); /* Append a maximum of n characters from C-string s to DynStr self */ void DynStr_appN( DynStr *self, const char *s, size_t n ); /* Truncate content of DynString to zero length */ void DynStr_clear( DynStr *self ); #endif