File: parse.h

package info (click to toggle)
wob 0.14.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 188 kB
  • sloc: ansic: 1,392; xml: 251; makefile: 7
file content (10 lines) | stat: -rw-r--r-- 247 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#ifndef _WOB_PARSE_H
#define _WOB_PARSE_H

#include <stdbool.h>

#include "color.h"

bool wob_parse_input(const char *input_buffer, unsigned long *percentage, struct wob_color *background, struct wob_color *border, struct wob_color *bar);

#endif