| 208 | } |
| 209 | |
| 210 | void etf_parser::append_map_header(etf_buffer *b, size_t size) { |
| 211 | unsigned char buf[5]; |
| 212 | buf[0] = ett_map; |
| 213 | store_32_bits(buf + 1, size); |
| 214 | buffer_write(b, (const char *)buf, 5); |
| 215 | } |
| 216 | |
| 217 | etf_parser::etf_parser() |
| 218 | { |
nothing calls this directly
no outgoing calls
no test coverage detected