4 <meta http-equiv=
"Content-Type" content=
"text/html">
5 <meta name=
"description" content=
"STABS">
6 <meta name=
"generator" content=
"makeinfo 4.3">
7 <link href=
"http://www.gnu.org/software/texinfo/" rel=
"generator-home">
12 Node:
<a name=
"Strings">Strings
</a>,
13 Next:
<a rel=
"next" accesskey=
"n" href=
"Enumerations.html#Enumerations">Enumerations
</a>,
14 Previous:
<a rel=
"previous" accesskey=
"p" href=
"Arrays.html#Arrays">Arrays
</a>,
15 Up:
<a rel=
"up" accesskey=
"u" href=
"Types.html#Types">Types
</a>
19 <h3 class=
"section">Strings
</h3>
21 <p>Some languages, like C or the original Pascal, do not have string types,
22 they just have related things like arrays of characters. But most
23 Pascals and various other languages have string types, which are
27 <dt><code>n
</code><var>type-information
</var><code> ;
</code><var>bytes
</var><code></code>
28 <dd><var>bytes
</var> is the maximum length. I'm not sure what
29 <var>type-information
</var> is; I suspect that it means that this is a string
30 of
<var>type-information
</var> (thus allowing a string of integers, a string
31 of wide characters, etc., as well as a string of characters). Not sure
32 what the format of this type is. This is an AIX feature.
34 <br><dt><code>z
</code><var>type-information
</var><code> ;
</code><var>bytes
</var><code></code>
35 <dd>Just like
<code>n
</code> except that this is a gstring, not an ordinary
36 string. I don't know the difference.
38 <br><dt><code>N
</code>
39 <dd>Pascal Stringptr. What is this? This is an AIX feature.
42 <p>Languages, such as CHILL which have a string type which is basically
43 just an array of characters use the
<code>S
</code> type attribute
44 (see
<a href=
"String-Field.html#String%20Field">String Field
</a>).