an efficient binary archive format
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

makefile

zach 180392bd baf06525

+9 -3
+5 -3
Makefile
··· 1 + prefix?=/usr/local 2 + 1 3 lib: 2 4 cargo build --release 3 5 cp target/release/libbindle_file.a . 4 6 cp target/release/libbindle_file.so libbindle.so || cp target/release/libbindle_file.dylib libbindle.dylib 5 7 6 8 install: 7 - cp include/bindle.h /usr/local/include/bindle.h 8 - cp libbbindle.* /usr/local/lib 9 + cp include/bindle.h "$(prefix)/include/bindle.h" 10 + cp libbindle.* "$(prefix)/lib" 9 11 10 12 uninstall: 11 - rm -f /usr/local/include/bindle.h /usr/local/lib/libbindle.* 13 + rm -f "$(prefix)/include/bindle.h" "$(prefix)/lib/libbindle.*" 12 14 13 15 test: 14 16 cargo test
+4
include/bindle.h
··· 96 96 97 97 bool bindle_exists(const struct Bindle *ctx, const char *name); 98 98 99 + /** 100 + * Create a new Stream, while the stream is active (until bindle_stream_finish is called), the 101 + * Bindle struct should not be accessed. 102 + */ 99 103 struct BindleStream *bindle_stream_new(struct Bindle *ctx, 100 104 const char *name, 101 105 enum BindleCompress compress);