aboutsummaryrefslogtreecommitdiff
path: root/getln.c
blob: 489621c5bd01a282bb5246b91ccec8dfc92bd2dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
}