1buffer_get_new_token_sa(3) Library Functions Manual buffer_get_new_token_sa(3)
2
3
4
6 buffer_get_new_token_sa - read token from buffer
7
9 #include <stralloc.h>
10 #include <buffer.h>
11
12 int buffer_get_new_token_sa(buffer* b,stralloc* sa,
13 const char* charset,size_t setlen);
14
16 buffer_get_new_token_sa copies data from the b to sa until one of the
17 delimiters in charset is found, overwriting the previous content of sa.
18 That delimiter is also copied to sa.
19
20 If reading from the buffer or allocating memory fails, buf‐
21 fer_get_new_token_sa returns -1 and sets errno appropriately. At that
22 point sa may already contain a partial token.
23
24 If you want to read from a non-blocking socket, use buffer_get_token_sa
25 instead.
26
28 -1 on error (setting errno), 0 on EOF, 1 when successful.
29
31 buffer_getline_sa(3), buffer_get_token(3), buffer(3)
32
33
34
35 buffer_get_new_token_sa(3)