annotate src/OPERATORS/op-int-concat.cc @ 5533:667ad2becb63

[project @ 2005-11-10 21:40:48 by jwe]
author jwe
date Thu, 10 Nov 2005 21:40:49 +0000
parents 4c8a2e4e0717
children 93c65f2a5668
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
1 /*
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
2
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
3 Copyright (C) 2004 John W. Eaton
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
4
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
5 This file is part of Octave.
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
6
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
7 Octave is free software; you can redistribute it and/or modify it
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
10 later version.
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
11
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
12 Octave is distributed in the hope that it will be useful, but WITHOUT
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
15 for more details.
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
16
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
18 along with Octave; see the file COPYING. If not, write to the Free
5307
4c8a2e4e0717 [project @ 2005-04-26 19:24:27 by jwe]
jwe
parents: 5075
diff changeset
19 Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
4c8a2e4e0717 [project @ 2005-04-26 19:24:27 by jwe]
jwe
parents: 5075
diff changeset
20 02110-1301, USA.
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
21
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
22 */
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
23
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
24 #ifdef HAVE_CONFIG_H
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
25 #include <config.h>
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
26 #endif
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
27
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
28 #include "gripes.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
29 #include "oct-obj.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
30 #include "ov.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
31 #include "ov-int8.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
32 #include "ov-int16.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
33 #include "ov-int32.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
34 #include "ov-int64.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
35 #include "ov-uint8.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
36 #include "ov-uint16.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
37 #include "ov-uint32.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
38 #include "ov-uint64.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
39 #include "ov-range.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
40 #include "ov-bool.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
41 #include "ov-bool-mat.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
42 #include "ov-scalar.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
43 #include "ov-re-mat.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
44 #include "ov-str-mat.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
45 #include "ov-typeinfo.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
46 #include "op-int.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
47 #include "ops.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
48
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
49 // Concatentation of mixed integer types:
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
50
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
51 OCTAVE_CONCAT_FN2 (int8, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
52 OCTAVE_CONCAT_FN2 (int8, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
53 OCTAVE_CONCAT_FN2 (int8, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
54
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
55 OCTAVE_CONCAT_FN2 (int8, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
56 OCTAVE_CONCAT_FN2 (int8, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
57 OCTAVE_CONCAT_FN2 (int8, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
58 OCTAVE_CONCAT_FN2 (int8, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
59
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
60 OCTAVE_CONCAT_FN2 (int16, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
61 OCTAVE_CONCAT_FN2 (int16, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
62 OCTAVE_CONCAT_FN2 (int16, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
63
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
64 OCTAVE_CONCAT_FN2 (int16, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
65 OCTAVE_CONCAT_FN2 (int16, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
66 OCTAVE_CONCAT_FN2 (int16, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
67 OCTAVE_CONCAT_FN2 (int16, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
68
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
69 OCTAVE_CONCAT_FN2 (int32, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
70 OCTAVE_CONCAT_FN2 (int32, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
71 OCTAVE_CONCAT_FN2 (int32, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
72
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
73 OCTAVE_CONCAT_FN2 (int32, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
74 OCTAVE_CONCAT_FN2 (int32, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
75 OCTAVE_CONCAT_FN2 (int32, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
76 OCTAVE_CONCAT_FN2 (int32, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
77
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
78 OCTAVE_CONCAT_FN2 (int64, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
79 OCTAVE_CONCAT_FN2 (int64, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
80 OCTAVE_CONCAT_FN2 (int64, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
81
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
82 OCTAVE_CONCAT_FN2 (int64, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
83 OCTAVE_CONCAT_FN2 (int64, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
84 OCTAVE_CONCAT_FN2 (int64, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
85 OCTAVE_CONCAT_FN2 (int64, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
86
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
87 OCTAVE_CONCAT_FN2 (uint8, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
88 OCTAVE_CONCAT_FN2 (uint8, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
89 OCTAVE_CONCAT_FN2 (uint8, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
90 OCTAVE_CONCAT_FN2 (uint8, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
91
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
92 OCTAVE_CONCAT_FN2 (uint8, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
93 OCTAVE_CONCAT_FN2 (uint8, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
94 OCTAVE_CONCAT_FN2 (uint8, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
95
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
96 OCTAVE_CONCAT_FN2 (uint16, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
97 OCTAVE_CONCAT_FN2 (uint16, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
98 OCTAVE_CONCAT_FN2 (uint16, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
99 OCTAVE_CONCAT_FN2 (uint16, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
100
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
101 OCTAVE_CONCAT_FN2 (uint16, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
102 OCTAVE_CONCAT_FN2 (uint16, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
103 OCTAVE_CONCAT_FN2 (uint16, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
104
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
105 OCTAVE_CONCAT_FN2 (uint32, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
106 OCTAVE_CONCAT_FN2 (uint32, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
107 OCTAVE_CONCAT_FN2 (uint32, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
108 OCTAVE_CONCAT_FN2 (uint32, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
109
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
110 OCTAVE_CONCAT_FN2 (uint32, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
111 OCTAVE_CONCAT_FN2 (uint32, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
112 OCTAVE_CONCAT_FN2 (uint32, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
113
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
114 OCTAVE_CONCAT_FN2 (uint64, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
115 OCTAVE_CONCAT_FN2 (uint64, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
116 OCTAVE_CONCAT_FN2 (uint64, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
117 OCTAVE_CONCAT_FN2 (uint64, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
118
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
119 OCTAVE_CONCAT_FN2 (uint64, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
120 OCTAVE_CONCAT_FN2 (uint64, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
121 OCTAVE_CONCAT_FN2 (uint64, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
122
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
123 OCTAVE_INT_DOUBLE_CONCAT_FN (int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
124 OCTAVE_INT_DOUBLE_CONCAT_FN (int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
125 OCTAVE_INT_DOUBLE_CONCAT_FN (int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
126 OCTAVE_INT_DOUBLE_CONCAT_FN (int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
127
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
128 OCTAVE_INT_DOUBLE_CONCAT_FN (uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
129 OCTAVE_INT_DOUBLE_CONCAT_FN (uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
130 OCTAVE_INT_DOUBLE_CONCAT_FN (uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
131 OCTAVE_INT_DOUBLE_CONCAT_FN (uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
132
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
133 OCTAVE_DOUBLE_INT_CONCAT_FN (int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
134 OCTAVE_DOUBLE_INT_CONCAT_FN (int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
135 OCTAVE_DOUBLE_INT_CONCAT_FN (int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
136 OCTAVE_DOUBLE_INT_CONCAT_FN (int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
137
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
138 OCTAVE_DOUBLE_INT_CONCAT_FN (uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
139 OCTAVE_DOUBLE_INT_CONCAT_FN (uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
140 OCTAVE_DOUBLE_INT_CONCAT_FN (uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
141 OCTAVE_DOUBLE_INT_CONCAT_FN (uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
142
5533
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
143 OCTAVE_INT_CHAR_CONCAT_FN (int8)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
144 OCTAVE_INT_CHAR_CONCAT_FN (int16)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
145 OCTAVE_INT_CHAR_CONCAT_FN (int32)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
146 OCTAVE_INT_CHAR_CONCAT_FN (int64)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
147
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
148 OCTAVE_INT_CHAR_CONCAT_FN (uint8)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
149 OCTAVE_INT_CHAR_CONCAT_FN (uint16)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
150 OCTAVE_INT_CHAR_CONCAT_FN (uint32)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
151 OCTAVE_INT_CHAR_CONCAT_FN (uint64)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
152
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
153 OCTAVE_CHAR_INT_CONCAT_FN (int8)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
154 OCTAVE_CHAR_INT_CONCAT_FN (int16)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
155 OCTAVE_CHAR_INT_CONCAT_FN (int32)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
156 OCTAVE_CHAR_INT_CONCAT_FN (int64)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
157
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
158 OCTAVE_CHAR_INT_CONCAT_FN (uint8)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
159 OCTAVE_CHAR_INT_CONCAT_FN (uint16)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
160 OCTAVE_CHAR_INT_CONCAT_FN (uint32)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
161 OCTAVE_CHAR_INT_CONCAT_FN (uint64)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
162
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
163 void
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
164 install_int_concat_ops (void)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
165 {
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
166 OCTAVE_INSTALL_CONCAT_FN2 (int8, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
167 OCTAVE_INSTALL_CONCAT_FN2 (int8, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
168 OCTAVE_INSTALL_CONCAT_FN2 (int8, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
169
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
170 OCTAVE_INSTALL_CONCAT_FN2 (int8, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
171 OCTAVE_INSTALL_CONCAT_FN2 (int8, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
172 OCTAVE_INSTALL_CONCAT_FN2 (int8, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
173 OCTAVE_INSTALL_CONCAT_FN2 (int8, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
174
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
175 OCTAVE_INSTALL_CONCAT_FN2 (int16, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
176 OCTAVE_INSTALL_CONCAT_FN2 (int16, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
177 OCTAVE_INSTALL_CONCAT_FN2 (int16, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
178
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
179 OCTAVE_INSTALL_CONCAT_FN2 (int16, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
180 OCTAVE_INSTALL_CONCAT_FN2 (int16, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
181 OCTAVE_INSTALL_CONCAT_FN2 (int16, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
182 OCTAVE_INSTALL_CONCAT_FN2 (int16, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
183
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
184 OCTAVE_INSTALL_CONCAT_FN2 (int32, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
185 OCTAVE_INSTALL_CONCAT_FN2 (int32, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
186 OCTAVE_INSTALL_CONCAT_FN2 (int32, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
187
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
188 OCTAVE_INSTALL_CONCAT_FN2 (int32, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
189 OCTAVE_INSTALL_CONCAT_FN2 (int32, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
190 OCTAVE_INSTALL_CONCAT_FN2 (int32, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
191 OCTAVE_INSTALL_CONCAT_FN2 (int32, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
192
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
193 OCTAVE_INSTALL_CONCAT_FN2 (int64, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
194 OCTAVE_INSTALL_CONCAT_FN2 (int64, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
195 OCTAVE_INSTALL_CONCAT_FN2 (int64, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
196
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
197 OCTAVE_INSTALL_CONCAT_FN2 (int64, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
198 OCTAVE_INSTALL_CONCAT_FN2 (int64, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
199 OCTAVE_INSTALL_CONCAT_FN2 (int64, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
200 OCTAVE_INSTALL_CONCAT_FN2 (int64, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
201
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
202 OCTAVE_INSTALL_CONCAT_FN2 (uint8, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
203 OCTAVE_INSTALL_CONCAT_FN2 (uint8, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
204 OCTAVE_INSTALL_CONCAT_FN2 (uint8, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
205 OCTAVE_INSTALL_CONCAT_FN2 (uint8, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
206
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
207 OCTAVE_INSTALL_CONCAT_FN2 (uint8, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
208 OCTAVE_INSTALL_CONCAT_FN2 (uint8, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
209 OCTAVE_INSTALL_CONCAT_FN2 (uint8, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
210
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
211 OCTAVE_INSTALL_CONCAT_FN2 (uint16, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
212 OCTAVE_INSTALL_CONCAT_FN2 (uint16, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
213 OCTAVE_INSTALL_CONCAT_FN2 (uint16, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
214 OCTAVE_INSTALL_CONCAT_FN2 (uint16, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
215
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
216 OCTAVE_INSTALL_CONCAT_FN2 (uint16, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
217 OCTAVE_INSTALL_CONCAT_FN2 (uint16, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
218 OCTAVE_INSTALL_CONCAT_FN2 (uint16, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
219
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
220 OCTAVE_INSTALL_CONCAT_FN2 (uint32, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
221 OCTAVE_INSTALL_CONCAT_FN2 (uint32, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
222 OCTAVE_INSTALL_CONCAT_FN2 (uint32, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
223 OCTAVE_INSTALL_CONCAT_FN2 (uint32, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
224
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
225 OCTAVE_INSTALL_CONCAT_FN2 (uint32, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
226 OCTAVE_INSTALL_CONCAT_FN2 (uint32, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
227 OCTAVE_INSTALL_CONCAT_FN2 (uint32, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
228
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
229 OCTAVE_INSTALL_CONCAT_FN2 (uint64, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
230 OCTAVE_INSTALL_CONCAT_FN2 (uint64, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
231 OCTAVE_INSTALL_CONCAT_FN2 (uint64, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
232 OCTAVE_INSTALL_CONCAT_FN2 (uint64, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
233
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
234 OCTAVE_INSTALL_CONCAT_FN2 (uint64, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
235 OCTAVE_INSTALL_CONCAT_FN2 (uint64, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
236 OCTAVE_INSTALL_CONCAT_FN2 (uint64, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
237
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
238 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
239 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
240 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
241 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
242
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
243 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
244 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
245 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
246 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
247
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
248 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
249 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
250 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
251 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
252
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
253 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
254 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
255 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
256 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (uint64);
5533
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
257
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
258 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (int8);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
259 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (int16);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
260 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (int32);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
261 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (int64);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
262
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
263 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (uint8);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
264 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (uint16);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
265 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (uint32);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
266 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (uint64);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
267
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
268 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (int8);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
269 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (int16);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
270 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (int32);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
271 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (int64);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
272
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
273 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (uint8);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
274 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (uint16);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
275 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (uint32);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
276 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (uint64);
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
277 }
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
278
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
279 /*
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
280 ;;; Local Variables: ***
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
281 ;;; mode: C++ ***
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
282 ;;; End: ***
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
283 */