* tree-outof-ssa.h (ssaexpand): Add partitions_for_undefined_values.
[official-gcc.git] / libgfortran / io / fbuf.h
bloba0c571338b437a103307c67a014c17671ae550ff
1 /* Copyright (C) 2009-2017 Free Software Foundation, Inc.
2 Contributed by Janne Blomqvist
4 This file is part of the GNU Fortran runtime library (libgfortran).
6 Libgfortran 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 3, or (at your option)
9 any later version.
11 Libgfortran 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.
16 Under Section 7 of GPL version 3, you are granted additional
17 permissions described in the GCC Runtime Library Exception, version
18 3.1, as published by the Free Software Foundation.
20 You should have received a copy of the GNU General Public License and
21 a copy of the GCC Runtime Library Exception along with this program;
22 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 <http://www.gnu.org/licenses/>. */
25 #ifndef GFOR_FBUF_H
26 #define GFOR_FBUF_H
28 #include "io.h"
31 /* Formatting buffer. This is a temporary scratch buffer used by
32 formatted read and writes. After every formatted I/O statement,
33 this buffer is flushed. This buffer is needed since not all devices
34 are seekable, and T or TL edit descriptors require moving backwards
35 in the record. However, advance='no' complicates the situation, so
36 the buffer must only be partially flushed from the end of the last
37 flush until the current position in the record. */
39 struct fbuf
41 char *buf; /* Start of buffer. */
42 int len; /* Length of buffer. */
43 int act; /* Active bytes in buffer. */
44 int pos; /* Current position in buffer. */
47 extern void fbuf_init (gfc_unit *, int);
48 internal_proto(fbuf_init);
50 extern void fbuf_destroy (gfc_unit *);
51 internal_proto(fbuf_destroy);
53 extern int fbuf_reset (gfc_unit *);
54 internal_proto(fbuf_reset);
56 extern char *fbuf_alloc (gfc_unit *, int);
57 internal_proto(fbuf_alloc);
59 extern int fbuf_flush (gfc_unit *, unit_mode);
60 internal_proto(fbuf_flush);
62 extern int fbuf_flush_list (gfc_unit *, unit_mode);
63 internal_proto(fbuf_flush_list);
65 extern int fbuf_seek (gfc_unit *, int, int);
66 internal_proto(fbuf_seek);
68 extern char *fbuf_read (gfc_unit *, int *);
69 internal_proto(fbuf_read);
71 /* Never call this function, only use fbuf_getc(). */
72 extern int fbuf_getc_refill (gfc_unit *);
73 internal_proto(fbuf_getc_refill);
75 static inline int
76 fbuf_getc (gfc_unit *u)
78 if (u->fbuf->pos < u->fbuf->act)
79 return (unsigned char) u->fbuf->buf[u->fbuf->pos++];
80 return fbuf_getc_refill (u);
83 static inline char *
84 fbuf_getptr (gfc_unit *u)
86 return (char*) (u->fbuf->buf + u->fbuf->pos);
89 #endif