blob: 387aae0cc8770d1b72ea5ccaf751eaffbeb214e8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef UTILITY_H
#define UTILITY_H
#include <beaker.h>
int hex_to_int(char c);
char *get_theme(const char *default_theme);
char *get_locale(const char *default_locale);
#endif
|