File: mode.h

package info (click to toggle)
mako-notifier 1.10.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 496 kB
  • sloc: ansic: 6,081; xml: 240; makefile: 6
file content (11 lines) | stat: -rw-r--r-- 220 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#ifndef MODE_H
#define MODE_H

#include <stdbool.h>

struct mako_state;

bool has_mode(struct mako_state *state, const char *mode);
void set_modes(struct mako_state *state, const char **modes, size_t modes_len);

#endif