Skip to content

Instantly share code, notes, and snippets.

@zeroeth
Created February 17, 2011 22:33
Show Gist options
  • Select an option

  • Save zeroeth/832881 to your computer and use it in GitHub Desktop.

Select an option

Save zeroeth/832881 to your computer and use it in GitHub Desktop.
class Names < BinData::Record
# non terminated fixed size string
string :fixed_size_name, :length => 6
# string followed by a \0
stringz :zero_terminated_name
# size stored before string
int8 :name_length
string :data, :read_length => :name_length
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment