select.c 1.5 KB

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