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

termkey_set_buffer_size, termkey_get_buffer_size - control the buffer size

Description

termkey_set_buffer_size()  changes  the size of the buffer space in the termkey(7) instance to that given
       by size. Any bytes pending in the buffer will be preserved when resizing, though they will  be  truncated
       if the new size is smaller than the total number of bytes in the buffer.

       termkey_get_buffer_size()    returns   the   size   of   the   buffer   set   by   the   last   call   to
       termkey_set_buffer_size(), or the default initial size of 256 bytes.

Name

       termkey_set_buffer_size, termkey_get_buffer_size - control the buffer size

Return Value

termkey_set_buffer_size() returns a true value, or zero if  an  error  occurs.  termkey_get_buffer_size()
       returns the current buffer size in bytes.

See Also

termkey_new(3), termkey_get_buffer_remaining(3), termkey(7)

                                                                                      TERMKEY_SET_BUFFER_SIZE(3)

Synopsis

#include<termkey.h>inttermkey_set_buffer_size(TermKey*tk,size_tsize);size_ttermkey_get_buffer_size(TermKey*tk);

       Link with -ltermkey.

See Also