| 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'}; |
| 68 | buffer_write(b, (const char *)buf, 7); |
| 69 | } |
| 70 | |
| 71 | void etf_parser::append_true(etf_buffer *b) { |
| 72 | static unsigned char buf[6] = {ett_atom_small, 4, 't', 'r', 'u', 'e'}; |
nothing calls this directly
no outgoing calls
no test coverage detected