config: use dashes, '-', instead of underscores, '_' in attribute names

This commit is contained in:
Daniel Eklöf 2019-01-12 10:32:52 +01:00
parent b0705578b0
commit 75bdd2ad3c
5 changed files with 17 additions and 17 deletions

8
particles/progress-bar.h Normal file
View file

@ -0,0 +1,8 @@
#pragma once
#include "../particle.h"
struct particle * particle_progress_bar_new(
const char *tag, int width,
struct particle *start_marker, struct particle *end_marker,
struct particle *fill, struct particle *empty, struct particle *indicator,
int left_margin, int right_margin, const char *on_click_template);