c25218f1996dff9e5642ed8c012402af92ff4c6d
[rrq/fuse_xattrs.git] / stringmem.h
1
2 // Concatenate strigns onto the heap if possible, or malloc new.
3 extern char *strjoin(const char *first,...);
4
5 // Dispose memory possibly within the string heap
6 extern void strfree(char *p);