mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
43fe5956ad
Now that our socket system call polyfills are good enough to support Musl's DNS library we should be using that rather than the barebones domain name system implementation we rolled on our own. There's many benefits to making this change. So many, that I myself wouldn't feel qualified to enumerate them all. The Musl DNS code had to be changed in order to support Windows of course, which looks very solid so far
13 lines
460 B
C
13 lines
460 B
C
#ifndef COSMOPOLITAN_TOOL_DECODE_LIB_BITABUILDER_H_
|
|
#define COSMOPOLITAN_TOOL_DECODE_LIB_BITABUILDER_H_
|
|
#include "libc/stdio/stdio.h"
|
|
COSMOPOLITAN_C_START_
|
|
|
|
struct BitaBuilder;
|
|
struct BitaBuilder *bitabuilder_new(void);
|
|
bool bitabuilder_setbit(struct BitaBuilder *, size_t);
|
|
bool bitabuilder_fwrite(const struct BitaBuilder *, FILE *);
|
|
void bitabuilder_free(struct BitaBuilder **);
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* COSMOPOLITAN_TOOL_DECODE_LIB_BITABUILDER_H_ */
|