DEV Community

List Formatting in C

Enno Rehling (恩諾) on September 21, 2019

Today I needed to format a list of words in C, and ended up writing my own list formatter, which was rather satisfying (I like fidgety string manip...
Collapse
 
ennor profile image
Enno Rehling (恩諾)

Update: Turns out the goto really wasn't necessary. Also, in practical use, sometimes memory regions overlap, and memmove is superior to memcpy.