logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

buffer_fromarray - initialize buffer structure from array

Description

       buffer_fromarray makes a virtual read buffer from an array.  The buffer reading functions will be able to
       read  until  the  end of the data in the array, then signal EOF.  The buffer does not have its own buffer
       space, it reuses the one in the array.

       Do not touch the array until you are done with the buffer!

       Reading data from the buffer will not change the stralloc.

Name

       buffer_fromarray - initialize buffer structure from array

See Also

buffer_fromsa(3), buffer_init(3), buffer(3), buffer_frombuf(3)

                                                                                             buffer_fromarray(3)

Syntax

#include<libowfat/array.h>#include<libowfat/buffer.h>

       void buffer_fromarray(buffer* b,array* a);

See Also