// 8x8 Font
// Written by Sjur Julin 2023.
// License: CC BY 4.0 https://creativecommons.org/licenses/by/4.0/
// Read the 2023 article here: https://www.ignorantus.com/pages/nano_fractals/
#ifndef TXT8X8_H__
#define TXT8X8_H__

#include <stdint.h>

void fix8x8(void);
void txt8x8x2(uint32_t *buf, int stride, char *txt, uint32_t fg, uint32_t bg);
void txt8x8x4(uint32_t *buf, int stride, char *txt, uint32_t fg, uint32_t bg);
void txt8x8x5(uint32_t *buf, int stride, char *txt, uint32_t fg, uint32_t bg);

#endif
