shithub: m8c

ref: 8e12a3b61591876f32786a8e0dcf5dc08b65655f
dir: /src/inline_font.h/

View raw version
#ifndef INLINE_FONT_H_
#define INLINE_FONT_H_

struct inline_font {
    int width;
    int height;
    unsigned char bits[];
};

#endif