xref: /freebsd/contrib/libarchive/unzip/la_getline.h (revision ee3960cba1068e12fb032a68c46d74841d9edab3)
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