File: getdelim.c

package info (click to toggle)
rdup 1.1.15-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, sid, stretch
  • size: 1,304 kB
  • ctags: 233
  • sloc: ansic: 4,120; sh: 3,370; exp: 277; makefile: 86; ruby: 36; perl: 4
file content (66 lines) | stat: -rw-r--r-- 1,172 bytes parent folder | download
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
55
56
57
58
59
60
61
62
63
64
65
66
/*
 * Copyright (c) 2009 - 2011 Miek Gieben
 * License: GPLv3(+), see LICENSE for details
 */

#include "rdup.h"

#define GETDELIM_BUFFER 128

extern int sig;

/* copied from xine-devel, same license applies
 * slightly modified to fit my needs
 */
ssize_t rdup_getdelim(char **lineptr, size_t * n, int delimiter, FILE * stream)
{
	char *p;
	int c;
	size_t len = 0;

	if (!lineptr || !n || (!*lineptr && *n))
		return -1;

	/* **lineptr is allocated */
	p = *lineptr;

	/* read characters from stream */
	while ((c = fgetc(stream)) != EOF) {
		if (sig != 0) {
			fclose(stream);
			signal_abort(sig);
		}
		if (len >= *n) {
			msg(_("Line longer than %d characters"), *n);
			return 0;
#if 0
			char *np = g_realloc(*lineptr, *n * 2);
			if (!np)
				return -1;
			p = np + (p - *lineptr);
			*lineptr = np;
			*n *= 2;
#endif
		}
		*p++ = (char)c;
		len++;
		if (delimiter == c)
			break;
	}

	/* end of file without any bytes read */
	if ((c == EOF) && (len == 0))
		return -1;

	/* trailing "\0" */
	if (len >= *n) {
		char *np = g_realloc(*lineptr, *n + 1);
		if (!np)
			return -1;
		p = np + (p - *lineptr);
		*lineptr = np;
		*n += 1;
	}
	*p = '\0';
	return len;
}