1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
#include "getln.h"
#include "byte.h"
/**
@file getln.c
@author djb
@source qmail
@brief evaluting tokenized input arguments
*/
int getln(buffer *b, stralloc *sa, int *match, int sep)
{
char *cont;
unsigned int clen;
if (sgetln(b, sa, &cont, &clen, sep) == -1) return -1;
if (!clen) {
*match = 0;
return 0;
}
if (!stralloc_catb(sa, cont, clen)) return -1;
*match = 1;
return 0;
}
int sgetln(buffer *b, stralloc *sa, char **cont, unsigned int *clen, int sep)
{
char *x;
unsigned int i;
int n;
if (!stralloc_ready(sa, 0)) return -1;
sa->len = 0;
for (;;) {
n = buffer_feed(b);
if (n < 0) return -1;
if (n == 0) {
*clen = 0;
return 0;
}
x = buffer_PEEK(b);
i = byte_chr(x, n, sep);
if (i < n) {
buffer_SEEK(b, *clen = i + 1);
*cont = x;
return 0;
}
if (!stralloc_readyplus(sa, n)) return -1;
i = sa->len;
sa->len = i + buffer_get(b, sa->s + i, n);
}
}
|