rework sanitized_source_directory using realpath
[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);