1buffer_frombuf(3) Library Functions Manual buffer_frombuf(3)
2
3
4
6 buffer_frombuf - initialize buffer structure from raw memory
7
9 #include <buffer.h>
10
11 void buffer_frombuf(buffer* b,const char* x, size_t l);
12
14 buffer_frombuf makes a virtual read buffer from a raw memory area. The
15 buffer reading functions will be able to read until the end of the data
16 in the memory area, then signal EOF. The buffer does not have its own
17 buffer space, it reuses the one passed into this function.
18
19 Do not touch this memory until you are done with the buffer!
20
21 Reading data from the buffer will not change the memory you passed in.
22
24 buffer_fromsa(3), buffer_init(3), buffer(3), buffer_frombuf(3)
25
26
27
28 buffer_frombuf(3)