| 54 | } |
| 55 | |
| 56 | void etf_parser::append_version(etf_buffer *b) { |
| 57 | static unsigned char buf[1] = {FORMAT_VERSION}; |
| 58 | buffer_write(b, (const char *)buf, 1); |
| 59 | } |
| 60 | |
| 61 | void etf_parser::append_nil(etf_buffer *b) { |
| 62 | static unsigned char buf[5] = {ett_atom_small, 3, 'n', 'i', 'l'}; |
nothing calls this directly
no outgoing calls
no test coverage detected