blob: cde088e62e73594c6c9a1d50c6ba630034934e4a (
plain)
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
|
Description:
Read a line from a stream.
Files:
lib/getline.c
m4/getline.m4
Depends-on:
stdio
extensions
getdelim [test $REPLACE_GETLINE = 1]
configure.ac:
gl_FUNC_GETLINE
gl_CONDITIONAL([GL_COND_OBJ_GETLINE], [test $REPLACE_GETLINE = 1])
AM_COND_IF([GL_COND_OBJ_GETLINE], [
gl_PREREQ_GETLINE
])
gl_STDIO_MODULE_INDICATOR([getline])
Makefile.am:
if GL_COND_OBJ_GETLINE
lib_SOURCES += getline.c
endif
Include:
<stdio.h>
License:
LGPLv2+
Maintainer:
Simon Josefsson
|