hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

memfunc_ptr.ha (188B)


      1 // SPDX-License-Identifier: MPL-2.0
      2 // (c) Hare authors <https://harelang.org>
      3 
      4 type memfunc_ptr = union {
      5 	byte: *[*]u8,
      6 	quad: *[*]u32,
      7 	octs: *[*]u64,
      8 	sz: *[*]size,
      9 	uptr: uintptr,
     10 };