debian/rules: Use `git' potty wrapper.
[qmail] / stralloc.h
CommitLineData
2117e02e
MW
1#ifndef STRALLOC_H
2#define STRALLOC_H
3
4#include "gen_alloc.h"
5
6GEN_ALLOC_typedef(stralloc,char,s,len,a)
7
8extern int stralloc_ready();
9extern int stralloc_readyplus();
10extern int stralloc_copy();
11extern int stralloc_cat();
12extern int stralloc_copys();
13extern int stralloc_cats();
14extern int stralloc_copyb();
15extern int stralloc_catb();
16extern int stralloc_append(); /* beware: this takes a pointer to 1 char */
17extern int stralloc_starts();
18
19#define stralloc_0(sa) stralloc_append(sa,"")
20
21#endif