Let the buffer store data in the given space. */
| 80 | |
| 81 | /** Let the buffer store data in the given space. */ |
| 82 | void set_buffer_space(uchar *start_arg, uchar *end_arg) |
| 83 | { |
| 84 | start= start_arg; |
| 85 | end= end_arg; |
| 86 | if (end != start) |
| 87 | TRASH_ALLOC(start, size_t(end - start)); |
| 88 | reset(); |
| 89 | } |
| 90 | |
| 91 | /** |
| 92 | Specify where write() should get the source data from, as well as source |
no outgoing calls
no test coverage detected