blob: f350d510d4a0ae5a944de9bd3b2b3748714ee5d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef __COLORS_H__
#define __COLORS_H__
#include "config.h"
#ifdef HAVE_INTTYPES_H
#include <inttypes.h>
#else
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
#endif
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
int32_t a_Color_parse (const char *subtag, int32_t default_color, int *err);
int32_t a_Color_vc(int32_t candidate, int32_t c1, int32_t c2, int32_t c3);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* __COLORS_H__ */
|