shithub: m8c

ref: 46b8f5b7f7fb1f9341d0e26fed84915aa4cc2bf3
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