about summary refs log tree commit diff
path: root/stringutil.c
Commit message (Collapse)AuthorAgeFilesLines
* refactor(stringutil): add function catn_alloc to ease url building in main.csternenseemann2020-08-211-0/+64
* bitutil.{c,h} → stringutil.{c,h} (more appropriate) * new function catn_alloc(size_t n, ...) which concats `n` given strings into an dynamically allocated buffer, mostly useful for building URLs which is done in blog_rss. may be a possibility to use in entry.c, but code there might be too specific.