OSDN Git Service

Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git] / libgfortran / runtime / convert_char.c
1 /* Runtime conversion of strings from one character kind to another.
2    Copyright 2008, 2009 Free Software Foundation, Inc.
3
4 This file is part of the GNU Fortran runtime library (libgfortran).
5
6 Libgfortran is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public
8 License as published by the Free Software Foundation; either
9 version 3 of the License, or (at your option) any later version.
10
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.
15
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.
19
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/>.  */
24
25 #include "libgfortran.h"
26
27 #include <stdlib.h>
28 #include <string.h>
29
30
31 extern void convert_char1_to_char4 (gfc_char4_t **, gfc_charlen_type,
32                                     const unsigned char *);
33 export_proto(convert_char1_to_char4);
34
35 extern void convert_char4_to_char1 (unsigned char **, gfc_charlen_type,
36                                     const gfc_char4_t *);
37 export_proto(convert_char4_to_char1);
38
39
40 void
41 convert_char1_to_char4 (gfc_char4_t **dst, gfc_charlen_type len,
42                         const unsigned char *src)
43 {
44   gfc_charlen_type i, l;
45
46   l = len > 0 ? len : 0;
47   *dst = get_mem ((l + 1) * sizeof (gfc_char4_t));
48
49   for (i = 0; i < l; i++)
50     (*dst)[i] = src[i];
51
52   (*dst)[l] = '\0';
53 }
54
55
56 void
57 convert_char4_to_char1 (unsigned char **dst, gfc_charlen_type len,
58                         const gfc_char4_t *src)
59 {
60   gfc_charlen_type i, l;
61
62   l = len > 0 ? len : 0;
63   *dst = get_mem ((l + 1) * sizeof (unsigned char));
64
65   for (i = 0; i < l; i++)
66     (*dst)[i] = src[i];
67
68   (*dst)[l] = '\0';
69 }