summaryrefslogtreecommitdiff
path: root/ccan/stringbuilder
AgeCommit message (Collapse)Author
2015-03-30stringbuilder: fix ccan/str test dependency.Rusty Russell
It's a test dependency, not a core one, so it belongs under "testdepends". Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2015-03-30stringbuilder: Functions for joining strings.Stuart Longland
This is a small couple of functions for joining lists of strings together. The lists can either be varadic arguments or arrays, and delimiters are optional. This patch incorporates some advice from David Gibson on the original module.