diff options
author | jcid <devnull@localhost> | 2007-10-07 00:36:34 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2007-10-07 00:36:34 +0200 |
commit | 93715c46a99c96d6c866968312691ec9ab0f6a03 (patch) | |
tree | 573f19ec6aa740844f53a7c0eb7114f04096bf64 /src/colors.h |
Initial revision
Diffstat (limited to 'src/colors.h')
-rw-r--r-- | src/colors.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/colors.h b/src/colors.h new file mode 100644 index 00000000..99d1bc0f --- /dev/null +++ b/src/colors.h @@ -0,0 +1,15 @@ +#ifndef __COLORS_H__ +#define __COLORS_H__ + +#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__ */ |