| 59 | } |
| 60 | |
| 61 | void etf_parser::append_nil(etf_buffer *b) { |
| 62 | static unsigned char buf[5] = {ett_atom_small, 3, 'n', 'i', 'l'}; |
| 63 | buffer_write(b, (const char *)buf, 5); |
| 64 | } |
| 65 | |
| 66 | void etf_parser::append_false(etf_buffer *b) { |
| 67 | static unsigned char buf[7] = {ett_atom_small, 5, 'f', 'a', 'l', 's', 'e'}; |
nothing calls this directly
no outgoing calls
no test coverage detected