| 201 | } |
| 202 | |
| 203 | void etf_parser::append_list_header(etf_buffer *b, size_t size) { |
| 204 | unsigned char buf[5]; |
| 205 | buf[0] = ett_list; |
| 206 | store_32_bits(buf + 1, size); |
| 207 | buffer_write(b, (const char *)buf, 5); |
| 208 | } |
| 209 | |
| 210 | void etf_parser::append_map_header(etf_buffer *b, size_t size) { |
| 211 | unsigned char buf[5]; |
nothing calls this directly
no outgoing calls
no test coverage detected