mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 15:03:34 +00:00
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.
11 lines
391 B
C
11 lines
391 B
C
#ifndef COSMOPOLITAN_THIRD_PARTY_ZLIB_PUFF_H_
|
|
#define COSMOPOLITAN_THIRD_PARTY_ZLIB_PUFF_H_
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
int puff(unsigned char *dest, unsigned long *destlen,
|
|
const unsigned char *source, unsigned long *sourcelen);
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_THIRD_PARTY_ZLIB_PUFF_H_ */
|