2020-06-15 14:18:57 +00:00
|
|
|
#ifndef COSMOPOLITAN_DSP_TTY_INTERNAL_H_
|
|
|
|
#define COSMOPOLITAN_DSP_TTY_INTERNAL_H_
|
2023-05-10 06:35:10 +00:00
|
|
|
#include "dsp/tty/quant.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
#include "dsp/tty/ttyrgb.h"
|
2023-04-27 09:56:41 +00:00
|
|
|
#include "third_party/intel/xmmintrin.internal.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
COSMOPOLITAN_C_START_
|
|
|
|
|
2023-05-10 06:35:10 +00:00
|
|
|
struct TtyRgb rgb2tty24f_(ttyrgb_m128);
|
|
|
|
struct TtyRgb rgb2ttyf2i_(ttyrgb_m128);
|
2020-06-15 14:18:57 +00:00
|
|
|
struct TtyRgb rgb2ttyi2f_(int, int, int);
|
|
|
|
struct TtyRgb rgb2ansi_(int, int, int);
|
|
|
|
struct TtyRgb rgb2ansihash_(int, int, int);
|
|
|
|
struct TtyRgb rgb2xterm24_(int, int, int);
|
2023-05-10 06:35:10 +00:00
|
|
|
struct TtyRgb rgb2xterm256gray_(ttyrgb_m128);
|
2020-06-15 14:18:57 +00:00
|
|
|
struct TtyRgb tty2rgb_(struct TtyRgb);
|
|
|
|
struct TtyRgb tty2rgb24_(struct TtyRgb);
|
2023-05-10 06:35:10 +00:00
|
|
|
ttyrgb_m128 tty2rgbf_(struct TtyRgb);
|
|
|
|
ttyrgb_m128 tty2rgbf24_(struct TtyRgb);
|
2020-06-15 14:18:57 +00:00
|
|
|
|
|
|
|
char *setbg16_(char *, struct TtyRgb);
|
|
|
|
char *setfg16_(char *, struct TtyRgb);
|
|
|
|
char *setbgfg16_(char *, struct TtyRgb, struct TtyRgb);
|
|
|
|
char *setbg256_(char *, struct TtyRgb);
|
|
|
|
char *setfg256_(char *, struct TtyRgb);
|
|
|
|
char *setbgfg256_(char *, struct TtyRgb, struct TtyRgb);
|
|
|
|
char *setbg24_(char *, struct TtyRgb);
|
|
|
|
char *setfg24_(char *, struct TtyRgb);
|
|
|
|
char *setbgfg24_(char *, struct TtyRgb, struct TtyRgb);
|
|
|
|
struct TtyRgb rgb2ansi8_(int, int, int);
|
|
|
|
|
|
|
|
COSMOPOLITAN_C_END_
|
|
|
|
#endif /* COSMOPOLITAN_DSP_TTY_INTERNAL_H_ */
|