// Read a configuration file. // Config files are formatted as several sections, each containing key = value pairs. // e.g.: // [section1] // thing1 = 33 // thing2 = 454 // [section2] // asdf = 123 void config_read(Ted *ted, char const *filename) { char section_name[32] = {0}; // @TODO }