Example #1
0
// Reads short atom as string and attempts to create it in atom table.
Term ExtTerm::read_atom_string_i8(tool::Reader& r) {
  Word sz = r.read_byte();
  String atom_str = r.read_string(sz);
  return vm()->add_atom(atom_str.c_str());
}