use larger string heap
[rrq/fuse_xattrs.git] / stringmem.h
1
2 // Concatenate strings onto the heap if possible, or malloc new.
3 extern char *strjoin(const char *first,...);
4
5 // Allocate buffer space from the heap
6 extern char *stralloc(int size);
7
8 // Dispose memory possibly within the string heap
9 extern void strfree(char *p);