hex/pointers/read_pointers.fj¶
———- Read Pointers
Macros¶
hex¶
hex.read_hex/2—Effectively: dst = *ptrhex.read_byte/2—Effectively: dst[:2] = *ptrhex.read_hex_and_inc—Effectively: dst = *ptrhex.read_hex/3—Effectively: dst[:n] = *ptr[:n]hex.read_byte_and_inc—Effectively: dst[:2] = *ptrhex.read_byte/3—Effectively: dst[:2n] = *ptr[:n]hex.read_nth_hex—dst = *(ptr + index*2w)— read the index-th hex past*ptr.hex.read_nth_byte—dst[:2] = *(ptr + index*2w)— read the index-th byte past*ptr.