~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

Viewing changes to cmd-line-utils/libedit/np/fgetln.c

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2010-03-17 14:56:02 UTC
  • Revision ID: james.westby@ubuntu.com-20100317145602-x7e30l1b2sb5s6w6
Tags: upstream-5.1.45
ImportĀ upstreamĀ versionĀ 5.1.45

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*      $NetBSD: fgetln.c,v 1.9 2008/04/29 06:53:03 martin Exp $        */
 
2
 
 
3
/*-
 
4
 * Copyright (c) 1998 The NetBSD Foundation, Inc.
 
5
 * All rights reserved.
 
6
 *
 
7
 * This code is derived from software contributed to The NetBSD Foundation
 
8
 * by Christos Zoulas.
 
9
 *
 
10
 * Redistribution and use in source and binary forms, with or without
 
11
 * modification, are permitted provided that the following conditions
 
12
 * are met:
 
13
 * 1. Redistributions of source code must retain the above copyright
 
14
 *    notice, this list of conditions and the following disclaimer.
 
15
 * 2. Redistributions in binary form must reproduce the above copyright
 
16
 *    notice, this list of conditions and the following disclaimer in the
 
17
 *    documentation and/or other materials provided with the distribution.
 
18
 *
 
19
 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
 
20
 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
 
21
 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 
22
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
 
23
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 
24
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 
25
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 
26
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 
27
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 
28
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 
29
 * POSSIBILITY OF SUCH DAMAGE.
 
30
 */
 
31
 
 
32
#ifdef HAVE_NBTOOL_CONFIG_H
 
33
#include "nbtool_config.h"
 
34
#else
 
35
#include "config.h"
 
36
#endif
 
37
 
 
38
#if !HAVE_FGETLN
 
39
#include <stdlib.h>
 
40
#ifndef HAVE_NBTOOL_CONFIG_H
 
41
/* These headers are required, but included from nbtool_config.h */
 
42
#include <stdio.h>
 
43
#include <unistd.h>
 
44
#include <errno.h>
 
45
#include <string.h>
 
46
#endif
 
47
 
 
48
char *
 
49
fgetln(FILE *fp, size_t *len)
 
50
{
 
51
        static char *buf = NULL;
 
52
        static size_t bufsiz = 0;
 
53
        char *ptr;
 
54
 
 
55
 
 
56
        if (buf == NULL) {
 
57
                bufsiz = BUFSIZ;
 
58
                if ((buf = malloc(bufsiz)) == NULL)
 
59
                        return NULL;
 
60
        }
 
61
 
 
62
        if (fgets(buf, bufsiz, fp) == NULL)
 
63
                return NULL;
 
64
 
 
65
        *len = 0;
 
66
        while ((ptr = strchr(&buf[*len], '\n')) == NULL) {
 
67
                size_t nbufsiz = bufsiz + BUFSIZ;
 
68
                char *nbuf = realloc(buf, nbufsiz);
 
69
 
 
70
                if (nbuf == NULL) {
 
71
                        int oerrno = errno;
 
72
                        free(buf);
 
73
                        errno = oerrno;
 
74
                        buf = NULL;
 
75
                        return NULL;
 
76
                } else
 
77
                        buf = nbuf;
 
78
 
 
79
                if (fgets(&buf[bufsiz], BUFSIZ, fp) == NULL) {
 
80
                        buf[bufsiz] = '\0';
 
81
                        *len = strlen(buf);
 
82
                        return buf;
 
83
                }
 
84
 
 
85
                *len = bufsiz;
 
86
                bufsiz = nbufsiz;
 
87
        }
 
88
 
 
89
        *len = (ptr - buf) + 1;
 
90
        return buf;
 
91
}
 
92
 
 
93
#endif
 
94
 
 
95
#ifdef TEST
 
96
int
 
97
main(int argc, char *argv[])
 
98
{
 
99
        char *p;
 
100
        size_t len;
 
101
 
 
102
        while ((p = fgetln(stdin, &len)) != NULL) {
 
103
                (void)printf("%zu %s", len, p);
 
104
                free(p);
 
105
        }
 
106
        return 0;
 
107
}
 
108
#endif