mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
13ee75150c
This change turns symbol table compression back on using Puff, which noticeably reduces the size of programs like redbean and Python. The redbean web server receives some minor API additions for controlling things like SSL in addition to filling gaps in the documentation.
17 lines
572 B
C
17 lines
572 B
C
#ifndef COSMOPOLITAN_LIBC_INTRIN_KPRINTF_H_
|
|
#define COSMOPOLITAN_LIBC_INTRIN_KPRINTF_H_
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
extern unsigned long long __kbirth;
|
|
|
|
void kprintf(const char *, ...);
|
|
size_t ksnprintf(char *, size_t, const char *, ...);
|
|
size_t kusnprintf(char *, size_t, const char *, ...);
|
|
void kvprintf(const char *, va_list);
|
|
size_t kvsnprintf(char *, size_t, const char *, va_list);
|
|
bool kisdangerous(const void *);
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_LIBC_INTRIN_KPRINTF_H_ */
|