| 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'}; |
| 73 | buffer_write(b, (const char *)buf, 6); |
| 74 | } |
| 75 | |
| 76 | void etf_parser::append_small_integer(etf_buffer *b, unsigned char d) { |
| 77 | unsigned char buf[2] = {ett_smallint, d}; |
nothing calls this directly
no outgoing calls
no test coverage detected