MCPcopy Create free account
hub / github.com/acl-dev/acl / read_buffed

Function read_buffed

lib_acl/src/stdlib/acl_vstream.c:380–388  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

378}
379
380static int read_buffed(ACL_VSTREAM *fp)
381{
382 int n;
383
384 fp->read_ptr = fp->read_buf;
385 n = read_to_buffer(fp, fp->read_buf, (size_t) fp->read_buf_len);
386 fp->read_cnt = n > 0 ? n : 0;
387 return n;
388}
389
390static int read_char(ACL_VSTREAM *fp)
391{

Callers 11

read_charFunction · 0.85
acl_vstream_getcFunction · 0.85
acl_vstream.cFile · 0.85
acl_vstream_readnFunction · 0.85
acl_vstream_readFunction · 0.85
acl_vstream_gets_peekFunction · 0.85
acl_vstream_readn_peekFunction · 0.85
acl_vstream_read_peekFunction · 0.85
acl_vstream_read_peek3Function · 0.85
acl_vstream_can_readFunction · 0.85

Calls 1

read_to_bufferFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…