mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 19:43:32 +00:00
2d80bbc802
blinkenlights now does a pretty good job emulating what happens when binaries boot from BIOS into long mode. So it's been much easier to debug the bare metal process and wrinkle out many issues.
20 lines
595 B
C
20 lines
595 B
C
#ifndef COSMOPOLITAN_TOOL_BUILD_LIB_BUFFER_H_
|
|
#define COSMOPOLITAN_TOOL_BUILD_LIB_BUFFER_H_
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
struct Buffer {
|
|
unsigned i, n;
|
|
char *p;
|
|
};
|
|
|
|
void AppendChar(struct Buffer *, char);
|
|
void AppendData(struct Buffer *, char *, unsigned);
|
|
void AppendStr(struct Buffer *, const char *);
|
|
void AppendWide(struct Buffer *, wint_t);
|
|
int AppendFmt(struct Buffer *, const char *, ...);
|
|
ssize_t WriteBuffer(struct Buffer *, int);
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_TOOL_BUILD_LIB_BUFFER_H_ */
|