| 79 | } |
| 80 | |
| 81 | void etf_parser::append_integer(etf_buffer *b, int32_t d) { |
| 82 | unsigned char buf[5]; |
| 83 | buf[0] = ett_integer; |
| 84 | store_32_bits(buf + 1, d); |
| 85 | buffer_write(b, (const char *)buf, 5); |
| 86 | } |
| 87 | |
| 88 | void etf_parser::append_unsigned_long_long(etf_buffer *b, unsigned long long d) { |
| 89 | unsigned char buf[1 + 2 + sizeof(unsigned long long)]; |
nothing calls this directly
no outgoing calls
no test coverage detected