xref: /freebsd/contrib/libarchive/unzip/la_getline.h (revision 2e113ef82465598b8c26e0ca415fbe90677fbd47)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright (c) 2011 The NetBSD Foundation, Inc.
5  * All rights reserved.
6  */
7 
8 #ifndef LA_GETLINE_H_INCLUDED
9 #define LA_GETLINE_H_INCLUDED
10 
11 #include <stdio.h>
12 #ifndef HAVE_GETLINE
13 ssize_t getline(char **buf, size_t *bufsiz, FILE *fp);
14 #endif
15 
16 #endif /* !LA_GETLINE_H_INCLUDED */
17