debian man page for buffer_peek

Query: buffer_peek

OS: debian

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

buffer_peek(3)						     Library Functions Manual						    buffer_peek(3)

NAME
buffer_peek - return pointer to string in buffer
SYNTAX
#include <buffer.h> int buffer_peek(buffer* b);
DESCRIPTION
buffer_peek returns a pointer to the first byte of the string in the buffer.
EXAMPLE
buffer_feed, buffer_peek and buffer_seek can be used for efficient reading loops, nearly the same speed as calling op directly: for (;;) { r = buffer_feed(&b); if (r <= 0) return r; x = buffer_peek(&b); dosomething(x,r); buffer_seek(&b,r); }
SEE ALSO
buffer_init(3), buffer_feed(3), buffer_get(3), buffer_seek(3), buffer(3) buffer_peek(3)
Related Man Pages
ldns_buffer_write(3) - centos
buffer_get(3) - debian
ldns_buffer_read_u16_at(3) - debian
ldns_buffer_read_u16(3) - debian
ldns_buffer_read_u8_at(3) - debian
Similar Topics in the Unix Linux Community
Installing Dash Shell on OS X Lion
Introduction
One instance of comparing grep and awk
My first PERL incarnation... Audio Oscillograph