Plaster

text
(cffi:defcstruct clockinfo (hz :int) (tick :int) ;; elided :int field for padding (stathz :int :offset 12) ;; align past padding field (profhz :int) ;; no explicit alignment, will be contiguous with stathz? ) (cffi:defcstruct clockinfo (hz :int) (tick :int) ;; elided :int field for padding (stathz :int :offset 12) ;; align past padding field (profhz :int :offset 16) ;; align again? )

Annotations