diff options
| author | manuel <manuel@mausz.at> | 2013-02-04 00:08:53 +0100 |
|---|---|---|
| committer | manuel <manuel@mausz.at> | 2013-02-04 00:08:53 +0100 |
| commit | 69aec538b456402170dc723af417ba5c05389c32 (patch) | |
| tree | e6f34c543f17c6392447ea337b2e2868212424d1 /stralloc.h | |
| download | qmail-69aec538b456402170dc723af417ba5c05389c32.tar.gz qmail-69aec538b456402170dc723af417ba5c05389c32.tar.bz2 qmail-69aec538b456402170dc723af417ba5c05389c32.zip | |
qmail 1.03 import
Diffstat (limited to 'stralloc.h')
| -rw-r--r-- | stralloc.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/stralloc.h b/stralloc.h new file mode 100644 index 0000000..fca496c --- /dev/null +++ b/stralloc.h | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | #ifndef STRALLOC_H | ||
| 2 | #define STRALLOC_H | ||
| 3 | |||
| 4 | #include "gen_alloc.h" | ||
| 5 | |||
| 6 | GEN_ALLOC_typedef(stralloc,char,s,len,a) | ||
| 7 | |||
| 8 | extern int stralloc_ready(); | ||
| 9 | extern int stralloc_readyplus(); | ||
| 10 | extern int stralloc_copy(); | ||
| 11 | extern int stralloc_cat(); | ||
| 12 | extern int stralloc_copys(); | ||
| 13 | extern int stralloc_cats(); | ||
| 14 | extern int stralloc_copyb(); | ||
| 15 | extern int stralloc_catb(); | ||
| 16 | extern int stralloc_append(); /* beware: this takes a pointer to 1 char */ | ||
| 17 | extern int stralloc_starts(); | ||
| 18 | |||
| 19 | #define stralloc_0(sa) stralloc_append(sa,"") | ||
| 20 | |||
| 21 | #endif | ||
