mirror of
https://codeberg.org/dnkl/yambar.git
synced 2025-04-19 19:25:41 +02:00
12 lines
295 B
C
12 lines
295 B
C
#pragma once
|
|
|
|
#include "bar.h"
|
|
#include "yml.h"
|
|
#include "font.h"
|
|
#include "particle.h"
|
|
|
|
bool conf_verify_bar(const struct yml_node *bar);
|
|
struct bar *conf_to_bar(const struct yml_node *bar);
|
|
|
|
struct particle * conf_to_particle(
|
|
const struct yml_node *node, const struct font *parent_font);
|