cosmopolitan/tool/decode/lib/bitabuilder.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
460 B
C
Raw Normal View History

2020-06-15 07:18:57 -07:00
#ifndef COSMOPOLITAN_TOOL_DECODE_LIB_BITABUILDER_H_
#define COSMOPOLITAN_TOOL_DECODE_LIB_BITABUILDER_H_
#include "libc/stdio/stdio.h"
2020-06-15 07:18:57 -07:00
COSMOPOLITAN_C_START_
struct BitaBuilder;
struct BitaBuilder *bitabuilder_new(void);
bool bitabuilder_setbit(struct BitaBuilder *, size_t);
bool bitabuilder_fwrite(const struct BitaBuilder *, FILE *);
2020-06-15 07:18:57 -07:00
void bitabuilder_free(struct BitaBuilder **);
COSMOPOLITAN_C_END_
#endif /* COSMOPOLITAN_TOOL_DECODE_LIB_BITABUILDER_H_ */