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.

124 lines
5.0 KiB
C

24 years ago
#ifndef STRALLOC_H
#define STRALLOC_H
#ifdef __dietlibc__
#include <sys/cdefs.h>
#endif
#ifndef __pure__
#define __pure__
#endif
23 years ago
/* stralloc is the internal data structure all functions are working on.
* s is the string.
* len is the used length of the string.
* a is the allocated length of the string.
*/
24 years ago
typedef struct stralloc {
char* s;
unsigned int len;
unsigned int a;
} stralloc;
/* stralloc_init will initialize a stralloc.
* Previously allocated memory will not be freed; use stralloc_free for
* that. To assign an empty string, use stralloc_copys(sa,""). */
extern void stralloc_init(stralloc* sa);
24 years ago
/* stralloc_ready makes sure that sa has enough space allocated to hold
* len bytes: If sa is not allocated, stralloc_ready allocates at least
* len bytes of space, and returns 1. If sa is already allocated, but
* not enough to hold len bytes, stralloc_ready allocates at least len
* bytes of space, copies the old string into the new space, frees the
* old space, and returns 1. Note that this changes sa.s. If the
* allocation fails, stralloc_ready leaves sa alone and returns 0. */
23 years ago
extern int stralloc_ready(stralloc* sa,unsigned int len);
24 years ago
/* stralloc_readyplus is like stralloc_ready except that, if sa is
* already allocated, stralloc_readyplus adds the current length of sa
* to len. */
23 years ago
extern int stralloc_readyplus(stralloc* sa,unsigned int len);
24 years ago
/* stralloc_copyb copies the string buf[0], buf[1], ..., buf[len-1] into
* sa, allocating space if necessary, and returns 1. If it runs out of
* memory, stralloc_copyb leaves sa alone and returns 0. */
23 years ago
extern int stralloc_copyb(stralloc* sa,const char* buf,unsigned int len);
24 years ago
/* stralloc_copys copies a \0-terminated string from buf into sa,
* without the \0. It is the same as
* stralloc_copyb(&sa,buf,str_len(buf)). */
23 years ago
extern int stralloc_copys(stralloc* sa,const char* buf);
24 years ago
/* stralloc_copy copies the string stored in sa2 into sa. It is the same
* as stralloc_copyb(&sa,sa2.s,sa2.len). sa2 must already be allocated. */
extern int stralloc_copy(stralloc* sa,const stralloc* sa2);
24 years ago
/* stralloc_catb adds the string buf[0], buf[1], ... buf[len-1] to the
* end of the string stored in sa, allocating space if necessary, and
* returns 1. If sa is unallocated, stralloc_catb is the same as
* stralloc_copyb. If it runs out of memory, stralloc_catb leaves sa
* alone and returns 0. */
23 years ago
extern int stralloc_catb(stralloc* sa,const char* in,unsigned int len);
24 years ago
/* stralloc_cats is analogous to stralloc_copys */
23 years ago
extern int stralloc_cats(stralloc* sa,const char* in);
24 years ago
/* stralloc_cat is analogous to stralloc_copy */
23 years ago
extern int stralloc_cat(stralloc* sa,stralloc* in);
24 years ago
/* stralloc_append adds one byte in[0] to the end of the string stored
* in sa. It is the same as stralloc_catb(&sa,in,1). */
23 years ago
extern int stralloc_append(stralloc* sa,const char* in); /* beware: this takes a pointer to 1 char */
24 years ago
/* stralloc_starts returns 1 if the \0-terminated string in "in", without
24 years ago
* the terminating \0, is a prefix of the string stored in sa. Otherwise
* it returns 0. sa must already be allocated. */
extern int stralloc_starts(stralloc* sa,const char* in) __pure__;
/* stralloc_diff returns negative, 0, or positive, depending on whether
* a is lexicographically smaller than, equal to, or greater than the
* string b. */
extern int stralloc_diff(const stralloc* a,const stralloc* b) __pure__;
/* stralloc_diffs returns negative, 0, or positive, depending on whether
* a is lexicographically smaller than, equal to, or greater than the
* string b[0], b[1], ..., b[n]=='\0'. */
extern int stralloc_diffs(const stralloc* a,const char* b) __pure__;
24 years ago
#define stralloc_equal(a,b) (!stralloc_diff((a),(b)))
#define stralloc_equals(a,b) (!stralloc_diffs((a),(b)))
24 years ago
/* stralloc_0 appends \0 */
#define stralloc_0(sa) stralloc_append(sa,"")
/* stralloc_catulong0 appends a '0' padded ASCII representation of in */
23 years ago
extern int stralloc_catulong0(stralloc* sa,unsigned long in,unsigned int n);
24 years ago
/* stralloc_catlong0 appends a '0' padded ASCII representation of in */
23 years ago
extern int stralloc_catlong0(stralloc* sa,signed long in,unsigned int n);
24 years ago
/* stralloc_free frees the storage associated with sa */
23 years ago
extern void stralloc_free(stralloc* sa);
24 years ago
#define stralloc_catlong(sa,l) (stralloc_catlong0((sa),(l),0))
#define stralloc_catuint0(sa,i,n) (stralloc_catulong0((sa),(i),(n)))
#define stralloc_catint0(sa,i,n) (stralloc_catlong0((sa),(i),(n)))
#define stralloc_catint(sa,i) (stralloc_catlong0((sa),(i),0))
/* remove last char. Return removed byte as unsigned char (or -1 if stralloc was empty). */
extern int stralloc_chop(stralloc* sa);
/* remove trailing "\r\n", "\n" or "\r". Return number of removed chars (0,1 or 2) */
extern int stralloc_chomp(stralloc* sa);
#ifdef BUFFER_H
/* write stralloc to buffer */
extern int buffer_putsa(buffer* b,stralloc* sa);
/* read token from buffer to stralloc */
extern int buffer_get_token_sa(buffer* b,stralloc* sa,const char* charset,unsigned int setlen);
/* read line from buffer to stralloc */
extern int buffer_getline_sa(buffer* b,stralloc* sa);
#endif
24 years ago
#endif