~ubuntu-branches/ubuntu/hardy/renameutils/hardy

« back to all changes in this revision

Viewing changes to lib/getline.h

  • Committer: Bazaar Package Importer
  • Author(s): Francois Marier
  • Date: 2006-07-21 16:39:15 UTC
  • mfrom: (1.1.4 edgy)
  • Revision ID: james.westby@ubuntu.com-20060721163915-k3kqs080hol8uw1n
Tags: 0.8.1-4
* Enable large file support on 32-bit platforms (closes: #377845)
* Bump Standards-Version up to 3.7.2 (no changes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Replacement for GNU C library function getline
2
 
 
3
 
   Copyright (C) 1995, 1997, 1999, 2000, 2001, 2002, 2003 Free
4
 
   Software Foundation, Inc.
5
 
 
6
 
This program is free software; you can redistribute it and/or modify
7
 
it under the terms of the GNU General Public License as published by
8
 
the Free Software Foundation; either version 2, or (at your option)
9
 
any later version.
10
 
 
11
 
This program is distributed in the hope that it will be useful,
12
 
but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
GNU General Public License for more details.
15
 
 
16
 
You should have received a copy of the GNU General Public License
17
 
along with this program; if not, write to the Free Software
18
 
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
19
 
 
20
 
#ifndef GETLINE_H_
21
 
# define GETLINE_H_ 1
22
 
 
 
1
/* getline.h --- Prototype for replacement getline function.
 
2
   Copyright (C) 2005 Free Software Foundation, Inc.
 
3
 
 
4
   This program is free software; you can redistribute it and/or
 
5
   modify it under the terms of the GNU General Public License as
 
6
   published by the Free Software Foundation; either version 2, or (at
 
7
   your option) any later version.
 
8
 
 
9
   This program is distributed in the hope that it will be useful, but
 
10
   WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
   General Public License for more details.
 
13
 
 
14
   You should have received a copy of the GNU General Public License
 
15
   along with this program; if not, write to the Free Software
 
16
   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 
17
   02110-1301, USA.  */
 
18
 
 
19
/* Written by Simon Josefsson. */
 
20
 
 
21
/* Get size_t, FILE, ssize_t.  And getline, if available.  */
23
22
# include <stddef.h>
24
23
# include <stdio.h>
25
 
 
26
 
/* Get ssize_t.  */
27
24
# include <sys/types.h>
28
25
 
29
 
/* glibc2 has these functions declared in <stdio.h>.  Avoid redeclarations.  */
30
 
# if __GLIBC__ < 2
31
 
 
32
 
extern ssize_t getline (char **_lineptr, size_t *_linesize, FILE *_stream);
33
 
 
34
 
extern ssize_t getdelim (char **_lineptr, size_t *_linesize, int _delimiter,
35
 
                          FILE *_stream);
36
 
 
37
 
# endif
38
 
 
39
 
#endif /* not GETLINE_H_ */
 
26
#if !HAVE_DECL_GETLINE
 
27
ssize_t getline (char **lineptr, size_t *n, FILE *stream);
 
28
#endif /* !HAVE_GETLINE */