Thanks to visit codestin.com
Credit goes to github.com

Skip to content
1 change: 1 addition & 0 deletions pkg/noun/build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,7 @@ const c_source_files = [_][]const u8{
"jets/e/argon2.c",
"jets/e/base.c",
"jets/e/blake.c",
"jets/e/bytestream.c",
"jets/e/chacha.c",
"jets/e/crc.c",
"jets/e/cue.c",
Expand Down
54 changes: 54 additions & 0 deletions pkg/noun/jets/136/tree.c
Original file line number Diff line number Diff line change
Expand Up @@ -808,6 +808,59 @@ static u3j_core _136_hex_chacha_d[] =
{}
};


//+| %utilities
static u3j_harm _136_hex_bytestream_rip_octs_a[] = {{".2", u3we_bytestream_rip_octs, c3y}, {}};
static u3j_harm _136_hex_bytestream_cat_octs_a[] = {{".2", u3we_bytestream_cat_octs, c3y}, {}};
static u3j_harm _136_hex_bytestream_can_octs_a[] = {{".2", u3we_bytestream_can_octs, c3y}, {}};
//+| %read-byte
static u3j_harm _136_hex_bytestream_read_byte_a[] = {{".2", u3we_bytestream_read_byte, c3y}, {}};
//+| %read-octs
static u3j_harm _136_hex_bytestream_read_octs_a[] = {{".2", u3we_bytestream_read_octs, c3y}, {}};
//+| %navigation
static u3j_harm _136_hex_bytestream_skip_line_a[] = {{".2", u3we_bytestream_skip_line, c3y}, {}};
static u3j_harm _136_hex_bytestream_find_byte_a[] = {{".2", u3we_bytestream_find_byte, c3y}, {}};
static u3j_harm _136_hex_bytestream_seek_byte_a[] = {{".2", u3we_bytestream_seek_byte, c3y}, {}};
//+| %transformation
static u3j_harm _136_hex_bytestream_chunk_a[] = {{".2", u3we_bytestream_chunk}, {}};
static u3j_harm _136_hex_bytestream_extract_a[] = {{".2", u3we_bytestream_extract}, {}};
static u3j_harm _136_hex_bytestream_fuse_extract_a[] = {{".2", u3we_bytestream_fuse_extract}, {}};
//+| %bitstream
static u3j_harm _136_hex_bytestream_need_bits_a[] = {{".2", u3we_bytestream_need_bits}, {}};
static u3j_harm _136_hex_bytestream_drop_bits_a[] = {{".2", u3we_bytestream_drop_bits}, {}};
// static u3j_harm _136_hex_bytestream_skip_bits_a[] = {{".2", u3we_bytestream_skip_bits}, {}};
static u3j_harm _136_hex_bytestream_peek_bits_a[] = {{".2", u3we_bytestream_peek_bits}, {}};
static u3j_harm _136_hex_bytestream_read_bits_a[] = {{".2", u3we_bytestream_read_bits}, {}};
// static u3j_harm _136_hex_bytestream_read_need_bits_a[] = {{".2", u3we_bytestream_read_need_bits}, {}};
static u3j_harm _136_hex_bytestream_byte_bits_a[] = {{".2", u3we_bytestream_byte_bits}, {}};

static u3j_core _136_hex_bytestream_d[] =
{ //+| %utilities
{"rip-octs", 7, _136_hex_bytestream_rip_octs_a, 0, no_hashes },
{"cat-octs", 7, _136_hex_bytestream_cat_octs_a, 0, no_hashes },
{"can-octs", 7, _136_hex_bytestream_can_octs_a, 0, no_hashes },
//+| %navigation
{"skip-line", 7, _136_hex_bytestream_skip_line_a, 0, no_hashes },
{"find-byte", 7, _136_hex_bytestream_find_byte_a, 0, no_hashes },
{"seek-byte", 7, _136_hex_bytestream_seek_byte_a, 0, no_hashes },
//+| %read-byte
{"read-byte", 7, _136_hex_bytestream_read_byte_a, 0, no_hashes },
//+| %read-octs
{"read-octs", 7, _136_hex_bytestream_read_octs_a, 0, no_hashes },
//+| %transformation
{"chunk", 7, _136_hex_bytestream_chunk_a, 0, no_hashes },
{"extract", 7, _136_hex_bytestream_extract_a, 0, no_hashes },
{"fuse-extract", 7, _136_hex_bytestream_fuse_extract_a, 0, no_hashes },
//+| %bitstream
{"need-bits", 7, _136_hex_bytestream_need_bits_a, 0, no_hashes },
{"drop-bits", 7, _136_hex_bytestream_drop_bits_a, 0, no_hashes },
// {"skip-bits", 7, _136_hex_bytestream_skip_bits_a, 0, no_hashes },
{"peek-bits", 7, _136_hex_bytestream_peek_bits_a, 0, no_hashes },
{"read-bits", 7, _136_hex_bytestream_read_bits_a, 0, no_hashes },
// {"read-need-bits", 7, _136_hex_bytestream_read_need_bits_a, 0, no_hashes },
{"byte-bits", 7, _136_hex_bytestream_byte_bits_a, 0, no_hashes },
};

static u3j_harm _136_hex_json_de_a[] = {{".2", u3we_json_de}, {}};
static u3j_harm _136_hex_json_en_a[] = {{".2", u3we_json_en}, {}};
static u3j_core _136_hex_json_d[] =
Expand Down Expand Up @@ -964,6 +1017,7 @@ static u3j_core _136_hex_d[] =
{ "mimes", 31, 0, _136_hex_mimes_d, no_hashes },
{ "json", 31, 0, _136_hex_json_d, no_hashes },
{ "wasm-sur-v0", 3, 0, _136_hex_wasm_sur_d, no_hashes },
{ "bytestream-v0", 31, 0, _136_hex_bytestream_d, no_hashes},
{ "checksum", 15, 0, _136_hex_checksum_d, no_hashes},
{}
};
Expand Down
Loading