1buffer_get_token_sa(3)     Library Functions Manual     buffer_get_token_sa(3)
2
3
4

NAME

6       buffer_get_token_sa - read token from buffer
7

SYNTAX

9       #include <stralloc.h>
10       #include <buffer.h>
11
12       int buffer_get_token_sa(buffer* b,stralloc* sa,
13                           const char* charset,size_t setlen);
14

DESCRIPTION

16       buffer_get_token_sa  appends  data  from  the  b to sa until one of the
17       delimiters in charset is found, NOT overwriting the previous content of
18       sa.  That delimiter is also appended to sa.
19
20       If   reading   from   the  buffer  or  allocating  memory  fails,  buf‐
21       fer_get_token_sa returns -1 and  sets  errno  appropriately.   At  that
22       point sa may already contain a partial token.
23

RETURN VALUE

25       -1 on error (setting errno), 0 on EOF, 1 when successful.
26

RATIONALE

28       buffer_get_token_sa appends instead of overwriting so it can be used on
29       non-blocking sockets (these signal error and set errno  to  EAGAIN;  in
30       this  case you can simply call buffer_get_token_sa again when select or
31       poll indicate more data is available).
32

SEE ALSO

34       buffer_getline_sa(3), buffer_get_token(3), buffer(3)
35
36
37
38                                                        buffer_get_token_sa(3)
Impressum