1 /* Copyright (C) 2009-2024 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)
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/>. */
30 /* Format nodes. A format string is converted into a tree of these
31 structures, which is traversed as part of a data transfer statement. */
66 gfc_full_array_i4
*vlist
;
68 udf
; /* User Defined Format. */
79 /* Members for traversing the tree during data transfer. */
82 struct fnode
*current
;
87 /* A storage structures for format node data. */
89 #define FARRAY_SIZE 64
91 typedef struct fnode_array
93 struct fnode_array
*next
;
94 fnode array
[FARRAY_SIZE
];
99 typedef struct format_data
101 char *format_string
, *string
;
104 format_token saved_token
;
105 int value
, format_string_len
, reversion_ok
;
107 const fnode
*saved_format
;
113 extern void parse_format (st_parameter_dt
*);
114 internal_proto(parse_format
);
116 extern const fnode
*next_format (st_parameter_dt
*);
117 internal_proto(next_format
);
119 extern void unget_format (st_parameter_dt
*, const fnode
*);
120 internal_proto(unget_format
);
122 extern void format_error (st_parameter_dt
*, const fnode
*, const char *);
123 internal_proto(format_error
);
125 extern void free_format_data (struct format_data
*);
126 internal_proto(free_format_data
);
128 extern void free_format (st_parameter_dt
*);
129 internal_proto(free_format
);
131 extern void free_format_hash_table (gfc_unit
*);
132 internal_proto(free_format_hash_table
);
134 extern void init_format_hash (st_parameter_dt
*);
135 internal_proto(init_format_hash
);
137 extern void free_format_hash (st_parameter_dt
*);
138 internal_proto(free_format_hash
);