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