mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 19:43:32 +00:00
23d333c090
This change includes many bug fixes, for the NT polyfills, strings, memory, boot, and math libraries which were discovered by adding more tools for recreational programming, such as PC emulation. Lemon has also been vendored because it works so well at parsing languages.
12 lines
395 B
C
12 lines
395 B
C
#ifndef COSMOPOLITAN_TOOL_BUILD_LIB_CGA_H_
|
|
#define COSMOPOLITAN_TOOL_BUILD_LIB_CGA_H_
|
|
#include "tool/build/lib/panel.h"
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
void DrawCga(struct Panel *, uint8_t[25][80][2]);
|
|
size_t FormatCga(uint8_t, char[hasatleast 11]);
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_TOOL_BUILD_LIB_CGA_H_ */
|