-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrowid_s.3
64 lines (55 loc) · 1.05 KB
/
rowid_s.3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
.TH ROWID_S 3
.SH NAME
i_rowid_s, m_rowid_s, r_rowid_s, s_rowid_s, w_rowid_s \- rowid operations
.SH SYNOPSIS
.B int i_rowid_s()
.B void m_rowid_s(n1, n2)
.br
.B int n1, n2;
.B int r_rowid_s(n)
.br
.B int n;
.B int s_rowid_s(n)
.br
.B int n;
.B void w_rowid_s(n1, n2)
.br
.B int n1, n2;
.SH DESCRIPTION
The arguments
.B n, n1
and
.B n2
are integers.
.br
.I i_rowid_s
initializes the internal memory array. Upon successful completion,
0 is returned. Otherwise, a value of 1 is returned to indicate an error.
.br
.I m_rowid_s
moves (shuffles) elements of the internal memory array down, working
between elements
.B n1
and
.B n2\-1
inclusive.
.br
.I r_rowid_s
reads the
.B n
element of the internal memory array. It returns the rowid read.
.br
.I s_rowid_s
changes the size of the internal memory array to
.B n
bytes. Upon successful completion, 0 is returned. Otherwise, a
value of 1 is returned to indicate an error.
.br
.I w_rowid_s
writes
.B n2
to the
.B n1
element of the internal memory array.
.SH SUPPORT
Send bug reports to Dave Snyder <dave@snide.com>