annotate docs/ccguide/l3tol.refentry @ 1399:40ccec5c5717

Updated
author boisy
date Fri, 10 Oct 2003 12:26:41 +0000
parents 986ff3d9f814
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
466
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
1 <refentry id="l3tol">
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
2 <refnamediv>
567
b3caab86dff9 Several functions ready.
roug
parents: 466
diff changeset
3 <refname>L3tol</refname>
b3caab86dff9 Several functions ready.
roug
parents: 466
diff changeset
4 <refname>Ltol3</refname>
656
roug
parents: 567
diff changeset
5 <refpurpose>convert between long integers and 3-byte integers</refpurpose>
466
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
6 </refnamediv>
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
7
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
8 <refsynopsisdiv>
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
9 <funcsynopsis>
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
10 <funcprototype>
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
11 <funcdef><function>l3tol</function></funcdef>
567
b3caab86dff9 Several functions ready.
roug
parents: 466
diff changeset
12 <paramdef>long *<parameter>lp</parameter></paramdef>
b3caab86dff9 Several functions ready.
roug
parents: 466
diff changeset
13 <paramdef>char *<parameter>cp</parameter></paramdef>
b3caab86dff9 Several functions ready.
roug
parents: 466
diff changeset
14 <paramdef>int <parameter>n</parameter></paramdef>
b3caab86dff9 Several functions ready.
roug
parents: 466
diff changeset
15 </funcprototype>
b3caab86dff9 Several functions ready.
roug
parents: 466
diff changeset
16
b3caab86dff9 Several functions ready.
roug
parents: 466
diff changeset
17 <funcprototype>
b3caab86dff9 Several functions ready.
roug
parents: 466
diff changeset
18 <funcdef><function>ltol3</function></funcdef>
b3caab86dff9 Several functions ready.
roug
parents: 466
diff changeset
19 <paramdef>char *<parameter>cp</parameter></paramdef>
b3caab86dff9 Several functions ready.
roug
parents: 466
diff changeset
20 <paramdef>long *<parameter>lp</parameter></paramdef>
b3caab86dff9 Several functions ready.
roug
parents: 466
diff changeset
21 <paramdef>int <parameter>n</parameter></paramdef>
466
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
22 </funcprototype>
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
23 </funcsynopsis>
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
24
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
25 </refsynopsisdiv>
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
26
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
27 <refsect1><title>Description</title>
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
28 <para>
567
b3caab86dff9 Several functions ready.
roug
parents: 466
diff changeset
29 Certain system values, such as disc addresses, are maintained
b3caab86dff9 Several functions ready.
roug
parents: 466
diff changeset
30 in three-byte form rather than four-byte; these functions
b3caab86dff9 Several functions ready.
roug
parents: 466
diff changeset
31 enable arithmetic to be used on them.
b3caab86dff9 Several functions ready.
roug
parents: 466
diff changeset
32 </para>
b3caab86dff9 Several functions ready.
roug
parents: 466
diff changeset
33 <para>
b3caab86dff9 Several functions ready.
roug
parents: 466
diff changeset
34 L3tol converts a vector on "n" three-byte integers pointed to
b3caab86dff9 Several functions ready.
roug
parents: 466
diff changeset
35 by "cp", into a vector of long integers starting at "lp".
b3caab86dff9 Several functions ready.
roug
parents: 466
diff changeset
36 </para>
b3caab86dff9 Several functions ready.
roug
parents: 466
diff changeset
37 <para>
b3caab86dff9 Several functions ready.
roug
parents: 466
diff changeset
38 Ltol3 does the opposite.
466
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
39 </para>
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
40 </refsect1>
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
41 </refentry>