1799a00c0SKevin Lo.\" $OpenBSD: offsetof.3,v 1.2 2010/02/18 18:30:19 jmc Exp $ 2799a00c0SKevin Lo.\" 3799a00c0SKevin Lo.\" Copyright (c) 2010 Thomas Pfaff <tpfaff@tp76.info> 4799a00c0SKevin Lo.\" 5799a00c0SKevin Lo.\" Permission to use, copy, modify, and distribute this software for any 6799a00c0SKevin Lo.\" purpose with or without fee is hereby granted, provided that the above 7799a00c0SKevin Lo.\" copyright notice and this permission notice appear in all copies. 8799a00c0SKevin Lo.\" 9799a00c0SKevin Lo.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10799a00c0SKevin Lo.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11799a00c0SKevin Lo.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12799a00c0SKevin Lo.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13799a00c0SKevin Lo.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14799a00c0SKevin Lo.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15799a00c0SKevin Lo.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16799a00c0SKevin Lo.\" 17*534ade2cSJoel Dahl.Dd February 18, 2010 18799a00c0SKevin Lo.Dt OFFSETOF 3 19799a00c0SKevin Lo.Os 20799a00c0SKevin Lo.Sh NAME 21799a00c0SKevin Lo.Nm offsetof 22799a00c0SKevin Lo.Nd offset of a structure member 23799a00c0SKevin Lo.Sh SYNOPSIS 24580dbd65SJoel Dahl.In stddef.h 25799a00c0SKevin Lo.Ft size_t 26799a00c0SKevin Lo.Fn offsetof "type" "member" 27799a00c0SKevin Lo.Sh DESCRIPTION 28799a00c0SKevin LoThe 29799a00c0SKevin Lo.Fn offsetof 30799a00c0SKevin Lomacro expands to an integer constant expression of type 31799a00c0SKevin Lo.Ft size_t 32799a00c0SKevin Loand yields the offset, 33799a00c0SKevin Loin bytes, of the field 34799a00c0SKevin Lo.Ar member 35799a00c0SKevin Lofrom the start of the structure 36799a00c0SKevin Lo.Ar type . 37799a00c0SKevin Lo.Pp 38799a00c0SKevin LoA compiler error will result if 39799a00c0SKevin Lo.Ar member 40799a00c0SKevin Lois not aligned to a byte boundary (i.e. it is a bit-field). 41799a00c0SKevin Lo.Sh STANDARDS 42799a00c0SKevin LoThe 43799a00c0SKevin Lo.Fn offsetof 44799a00c0SKevin Lomacro conforms to 45799a00c0SKevin Lo.St -ansiC . 46