mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-13 04:29:09 +08:00
25 lines
895 B
C
25 lines
895 B
C
/*************************************************************************\
|
|
* Copyright (C) Michael Kerrisk, 2018. *
|
|
* *
|
|
* This program is free software. You may use, modify, and redistribute it *
|
|
* under the terms of the GNU Lesser General Public License as published *
|
|
* by the Free Software Foundation, either version 3 or (at your option) *
|
|
* any later version. This program is distributed without any warranty. *
|
|
* See the files COPYING.lgpl-v3 and COPYING.gpl-v3 for details. *
|
|
\*************************************************************************/
|
|
|
|
/* Header file for Listing 59-1 */
|
|
|
|
/* read_line.h
|
|
|
|
Header file for read_line.c.
|
|
*/
|
|
#ifndef READ_LINE_H
|
|
#define READ_LINE_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
ssize_t readLine(int fd, void *buffer, size_t n);
|
|
|
|
#endif
|