summaryrefslogtreecommitdiff
path: root/stralloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'stralloc.h')
-rw-r--r--stralloc.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/stralloc.h b/stralloc.h
new file mode 100644
index 0000000..51d61bd
--- /dev/null
+++ b/stralloc.h
@@ -0,0 +1,31 @@
1/* Public domain. */
2
3#ifndef STRALLOC_H
4#define STRALLOC_H
5
6#include "gen_alloc.h"
7
8GEN_ALLOC_typedef(stralloc,char,s,len,a)
9
10extern int stralloc_ready(stralloc *,unsigned int);
11extern int stralloc_readyplus(stralloc *,unsigned int);
12extern int stralloc_copy(stralloc *,const stralloc *);
13extern int stralloc_cat(stralloc *,const stralloc *);
14extern int stralloc_copys(stralloc *,const char *);
15extern int stralloc_cats(stralloc *,const char *);
16extern int stralloc_copyb(stralloc *,const char *,unsigned int);
17extern int stralloc_catb(stralloc *,const char *,unsigned int);
18extern int stralloc_append(stralloc *,const char *); /* beware: this takes a pointer to 1 char */
19extern int stralloc_starts(stralloc *,const char *);
20
21#define stralloc_0(sa) stralloc_append(sa,"")
22
23extern int stralloc_catulong0(stralloc *,unsigned long,unsigned int);
24extern int stralloc_catlong0(stralloc *,long,unsigned int);
25
26#define stralloc_catlong(sa,l) (stralloc_catlong0((sa),(l),0))
27#define stralloc_catuint0(sa,i,n) (stralloc_catulong0((sa),(i),(n)))
28#define stralloc_catint0(sa,i,n) (stralloc_catlong0((sa),(i),(n)))
29#define stralloc_catint(sa,i) (stralloc_catlong0((sa),(i),0))
30
31#endif