File: offsetof.3

package info (click to toggle)
manpages-ja 0.5.0.0.20080615-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 20,508 kB
  • ctags: 1
  • sloc: sh: 13,690; perl: 157; makefile: 114
file content (102 lines) | stat: -rw-r--r-- 3,220 bytes parent folder | download
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
.\" Copyright (C) 2006 Justin Pryzby <pryzbyj@justinpryzby.com>
.\"     and Copyright (C) 2006 Michael Kerrisk <mtk.manpages@gmail.com>
.\"
.\" Permission is hereby granted, free of charge, to any person obtaining
.\" a copy of this software and associated documentation files (the
.\" "Software"), to deal in the Software without restriction, including
.\" without limitation the rights to use, copy, modify, merge, publish,
.\" distribute, sublicense, and/or sell copies of the Software, and to
.\" permit persons to whom the Software is furnished to do so, subject to
.\" the following conditions:
.\"
.\" The above copyright notice and this permission notice shall be
.\" included in all copies or substantial portions of the Software.
.\"
.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
.\" EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
.\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
.\" IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
.\" CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
.\" TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
.\" SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
.\"
.\" References:
.\"   /usr/lib/gcc/i486-linux-gnu/4.1.1/include/stddef.h
.\"   glibc-doc
.\"
.\" Japanese Version Copyright (c) 2006 Akihiro MOTOKI
.\"                             all rights reserved.
.\" Translated 2006-07-25, Akihiro MOTOKI, Catch up to LDP v2.34
.\"
.TH OFFSETOF 3 2006-05-23 "GNU" "Linux Programmer's Manual"
.SH ̾
offsetof \- ¤ΤΥСΥեåȤ֤
.SH 
.nf
.B #include <stddef.h>
.sp
.BI "size_t offsetof(" type ", " member );
.fi
.SH 
.BR offsetof ()
ޥϡե \fImember\fP 
¤ \fItype\fP ƬΥեåȤ֤

ΥޥͭѤʤΤϡ
¤ΤեɤΥϼˤäѲ뤷
ѥˤեɴ֤ѥǥ󥰤ΥХȿ
㤦ǽ뤫Ǥ롣
η̡륨ȤΥեåȤɬ⤽
ȤΥιפȤϤʤʤ

\fImember\fP Хȶ˰֤Ƥʤ
(ʤӥåȥեɤξ) ˤϡ
ѥǥ顼ȯ롣
.SH ֤
.BR offsetof ()
ϡꤵ줿Ȥλꤵ줿Ǥ
եåȤ򡢥Хñ̤֤
.SH 
C89, C99, POSIX.1-2001.
.SH 
Linux/i386 ƥǡ
.BR gcc (1)
Υǥեȥץ
ѥ뤵줿硢ΥץϰʲΤ褦ʽϤ֤
.nf

    $ ./a.out
    offsets: i=0; c=4; d=8 a=16
    sizeof(struct s)=16

.fi
.nf
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>

int
main(void)
{
    struct s {
        int i;
        char c;
        double d;
        char a[];
    };

    /* Ϥϥѥ¸Ǥ */

    printf("offsets: i=%ld; c=%ld; d=%ld a=%ld\\n",
            (long) offsetof(struct s, i),
            (long) offsetof(struct s, c),
            (long) offsetof(struct s, d),
            (long) offsetof(struct s, a));
    printf("sizeof(struct s)=%ld\\n", (long) sizeof(struct s));

    exit(EXIT_SUCCESS);
}
.fi
.\" .SH SEE ALSO
.\" FIXME . When one day readdir_r(3) is documented, it should have
.\" a SEE ALSO that refers to this page.