strtoumax: fix typo in previous commit.
[gnulib.git] / lib / getnline.h
index 84e6a17..c5eafa3 100644 (file)
@@ -1,6 +1,6 @@
 /* getnline - Read a line from a stream, with bounded memory allocation.
 
-   Copyright (C) 2003, 2004 Free Software Foundation, Inc.
+   Copyright (C) 2003-2004, 2009-2013 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -31,7 +31,7 @@
    Return the number of bytes read and stored at *LINEPTR (not including the
    NUL terminator), or -1 on error or EOF.  */
 extern ssize_t getnline (char **lineptr, size_t *linesize, size_t nmax,
-                        FILE *stream);
+                         FILE *stream);
 
 /* Read a line, up to the next occurrence of DELIMITER, from STREAM, and store
    it in *LINEPTR.
@@ -42,6 +42,6 @@ extern ssize_t getnline (char **lineptr, size_t *linesize, size_t nmax,
    Return the number of bytes read and stored at *LINEPTR (not including the
    NUL terminator), or -1 on error or EOF.  */
 extern ssize_t getndelim (char **lineptr, size_t *linesize, size_t nmax,
-                         int delimiter, FILE *stream);
+                          int delimiter, FILE *stream);
 
 #endif /* GETNLINE_H */