]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgfortran/runtime/select.c
Update copyright years.
[thirdparty/gcc.git] / libgfortran / runtime / select.c
CommitLineData
6de9cd9a 1/* Implement the SELECT statement for character variables.
a945c346 2 Copyright (C) 2008-2024 Free Software Foundation, Inc.
6de9cd9a 3
3571925e 4This file is part of the GNU Fortran runtime library (libgfortran).
6de9cd9a 5
3571925e
FXC
6Libgfortran is free software; you can redistribute it and/or
7modify it under the terms of the GNU General Public
8License as published by the Free Software Foundation; either
748086b7 9version 3 of the License, or (at your option) any later version.
57dea9f6
TM
10
11Libgfortran is distributed in the hope that it will be useful,
6de9cd9a
DN
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
748086b7
JJ
16Under Section 7 of GPL version 3, you are granted additional
17permissions described in the GCC Runtime Library Exception, version
183.1, as published by the Free Software Foundation.
6de9cd9a 19
748086b7
JJ
20You should have received a copy of the GNU General Public License and
21a copy of the GCC Runtime Library Exception along with this program;
22see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23<http://www.gnu.org/licenses/>. */
6de9cd9a 24
3571925e 25#include "libgfortran.h"
6de9cd9a 26
6de9cd9a 27
3571925e
FXC
28/* The string selection function is defined using a few generic macros
29 in select_inc.c, so we avoid code duplication between the various
30 character type kinds. */
6de9cd9a 31
3571925e
FXC
32#undef CHARTYPE
33#define CHARTYPE char
34#undef SUFFIX
35#define SUFFIX(x) x
6de9cd9a 36
3571925e 37#include "select_inc.c"
6de9cd9a 38
6de9cd9a 39
3571925e
FXC
40#undef CHARTYPE
41#define CHARTYPE gfc_char4_t
42#undef SUFFIX
43#define SUFFIX(x) x ## _char4
6de9cd9a 44
3571925e 45#include "select_inc.c"
6de9cd9a 46