Sha256: 8c7f4253e10a44ff98d13913e569c69d7184d2e10b127bc026c4c95b4eff49c9
Contents?: true
Size: 412 Bytes
Versions: 22
Compression:
Stored size: 412 Bytes
Contents
#ifndef COLORS_H #define COLORS_H #include "../deps/uthash/uthash.h" #ifdef __cplusplus extern "C" { #endif struct css_colors { char name[22]; /* key */ char color[10]; UT_hash_handle hh; /* makes this structure hashable */ }; /* Assemble a mapping of color names */ void mtex2MML_create_css_colors(struct css_colors **colors); #ifdef __cplusplus } #endif #endif /* ! COLORS_H */
Version data entries
22 entries across 22 versions & 1 rubygems