blob: 4f8a8537bcfc8e1d80358aba41b1ecaa5fd52b4f [file] [log] [blame]
Gavin Howard5715b042018-02-12 16:11:42 -07001/*
2 * Copyright 2018 Contributors
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
6 *
7 * 1. Redistributions of source code must retain the above copyright notice,
8 * this list of conditions and the following disclaimer.
9 *
10 * 2. Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13
14 * 3. Neither the name of the copyright holder nor the names of its contributors
15 * may be used to endorse or promote products derived from this software without
16 * specific prior written permission.
17
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
29 *
30 *******************************************************************************
31 *
Gavin Howard0dbafb52018-02-15 10:03:30 -070032 * A special license exemption is granted to the Toybox project to use this
33 * source under the following BSD 0-Clause License:
Gavin Howard5715b042018-02-12 16:11:42 -070034 *
35 * Permission to use, copy, modify, and/or distribute this software for any
36 * purpose with or without fee is hereby granted.
37 *
38 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
39 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
40 * AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
41 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
42 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
43 * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
44 * PERFORMANCE OF THIS SOFTWARE.
45 *
46 *******************************************************************************
47 *
48 * Definitions for bc I/O.
49 *
50 */
51
Gavin Howard35776b42018-01-16 20:18:24 -070052#ifndef BC_IO_H
53#define BC_IO_H
54
55#include <stdio.h>
56#include <stdlib.h>
57
58typedef int (*BcIoGetc)(void*);
59
60long bc_io_frag(char* buf, long len, int term, BcIoGetc bcgetc, void* ctx);
61
62long bc_io_fgets(char * buf, int n, FILE* fp);
63
64#define bc_io_gets(buf, n) bc_io_fgets((buf), (n), stdin)
65
66size_t bc_io_fgetline(char** p, size_t* n, FILE* fp);
67
68#define bc_io_getline(p, n) bc_io_fgetline((p), (n), stdin)
69
70#endif // BC_IO_H