common.h (118B)
1 #pragma once 2 3 typedef struct r_list_hdr_ RListHdr_; 4 5 struct r_list_hdr_ { 6 usize len; 7 usize cap; 8 maxalign arr[]; 9 };