| 74 | } |
| 75 | |
| 76 | void etf_parser::append_small_integer(etf_buffer *b, unsigned char d) { |
| 77 | unsigned char buf[2] = {ett_smallint, d}; |
| 78 | buffer_write(b, (const char *)buf, 2); |
| 79 | } |
| 80 | |
| 81 | void etf_parser::append_integer(etf_buffer *b, int32_t d) { |
| 82 | unsigned char buf[5]; |
nothing calls this directly
no outgoing calls
no test coverage detected