config: sort includes, add comment

This commit is contained in:
Daniel Eklöf 2019-01-12 11:47:30 +01:00
parent 3c870f759a
commit 4dd1a24af6

View file

@ -1,12 +1,16 @@
#pragma once #pragma once
#include "bar.h" #include "bar.h"
#include "yml.h"
#include "font.h" #include "font.h"
#include "particle.h" #include "particle.h"
#include "yml.h"
bool conf_verify_bar(const struct yml_node *bar); bool conf_verify_bar(const struct yml_node *bar);
struct bar *conf_to_bar(const struct yml_node *bar); struct bar *conf_to_bar(const struct yml_node *bar);
/*
* Utility functions, for e.g. modules
*/
struct particle * conf_to_particle( struct particle * conf_to_particle(
const struct yml_node *node, const struct font *parent_font); const struct yml_node *node, const struct font *parent_font);