aboutsummaryrefslogtreecommitdiff
path: root/getln.c
diff options
context:
space:
mode:
Diffstat (limited to 'getln.c')
-rw-r--r--getln.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/getln.c b/getln.c
new file mode 100644
index 0000000..489621c
--- /dev/null
+++ b/getln.c
@@ -0,0 +1,14 @@
+#include "byte.h"
+#include "getln.h"
+
+int getln(buffer *ss,stralloc *sa,int *match,int sep)
+{
+ char *cont;
+ unsigned int clen;
+
+ if (getln2(ss,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;
+}