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

openreadclose - read a whole file into a stralloc

Description

       openreadclose  opens the file filename for reading and reads the whole content into the stralloc sa.  The
       file is read in chunks of bufsize bytes size.  If everything worked fine, openreadclose  returns  1.   If
       the file did not exist, openreadclose returns 0.  On every other error, openreadclose returns -1 and sets
       errno appropriately.

Name

       openreadclose - read a whole file into a stralloc

See Also

open_read(3), readclose(3)

                                                                                                openreadclose(3)

Syntax

#include<libowfat/openreadclose.h>

       ssize_t openreadclose(const char *filename,
                  stralloc* sa,size_t bufsize);

See Also