blob: e493cc2019e559bc67434d64603efd8014e60989 [file] [log] [blame]
Amaury Poulycb09e362012-11-03 02:16:01 +01001/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2010 Amaury Pouly
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21#ifndef __MISC_H__
22#define __MISC_H__
23
24#include <stdbool.h>
25#include <stddef.h>
26
27#define _STR(a) #a
28#define STR(a) _STR(a)
29
Amaury Poulycb09e362012-11-03 02:16:01 +010030#define ROUND_UP(val, round) ((((val) + (round) - 1) / (round)) * (round))
31
Amaury Pouly92ecbd52017-01-04 16:36:27 +010032typedef const char color_t[];
Amaury Poulycb09e362012-11-03 02:16:01 +010033
Amaury Pouly37f95f62016-10-27 23:06:16 +020034extern color_t OFF, GREY, RED, GREEN, YELLOW, BLUE;
Amaury Poulycb09e362012-11-03 02:16:01 +010035void color(color_t c);
36void enable_color(bool enable);
37
Amaury Pouly92ecbd52017-01-04 16:36:27 +010038typedef void (*generic_printf_t)(void *u, bool err, color_t c, const char *f, ...);
Amaury Poulycb09e362012-11-03 02:16:01 +010039
Amaury Pouly92ecbd52017-01-04 16:36:27 +010040void generic_std_printf(void *u, bool err, color_t c, const char *f, ...);
Amaury Poulycb09e362012-11-03 02:16:01 +010041
42#endif /* __MISC_H__ */