var cstruct = require('c-struct') var Simple = cstruct.define( cstruct.uint8('first'), cstruct.int8('second') ) Simple.size // 2 var buffer = new Buffer(Simple.size ...
This is a function that is suppose to be used together with tagged template strings. The template string is a struct definition as you write it in C. The return value is a new instance of Schema. A ...