You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
962 B
Groff
24 lines
962 B
Groff
.TH buffer_get_token_pred 3
|
|
.SH NAME
|
|
buffer_get_token_pred \- read token from buffer
|
|
.SH SYNTAX
|
|
.B #include <buffer.h>
|
|
|
|
int \fBbuffer_get_token_pred\fP(buffer* \fIb\fR,char* \fIx\fR,unsigned int \fIlen\fR,
|
|
int (*\fIpredicate\fR)(const char* \fIs\fR,unsigned int \fIlen\fR));
|
|
.SH DESCRIPTION
|
|
buffer_get_token_pred copies data from \fIb\fR to \fIx\fR[0],
|
|
\fIx\fR[1], ..., \fIx\fR[\fIlen\fR-1] until \fIlen\fR bytes have been
|
|
read or \fIpredicate\fR called on the destination string returns
|
|
nonzero.
|
|
|
|
\fIpredicate\fR can also return 0 (indicating further input is required
|
|
to complete the token) or -1 (abort and return -1; use this if
|
|
\fIpredicate\fR wants to enfore a maximum message size or does timeout
|
|
handling or detects a malformed message).
|
|
|
|
buffer_get_token_pred returns the number of bytes copied or -1 on
|
|
\fIerrno\fR (setting errno appropriately).
|
|
.SH "SEE ALSO"
|
|
buffer_init(3), buffer_feed(3), buffer_peek(3), buffer_seek(3), buffer(3)
|