sl@0
|
1 |
/** @file ../include/stddef.h
|
sl@0
|
2 |
@internalComponent
|
sl@0
|
3 |
*/
|
sl@0
|
4 |
|
sl@0
|
5 |
/** @typedef typedef __ptrdiff_t ptrdiff_t
|
sl@0
|
6 |
|
sl@0
|
7 |
special type for pointer arithmetic
|
sl@0
|
8 |
|
sl@0
|
9 |
@publishedAll
|
sl@0
|
10 |
@externallyDefinedApi
|
sl@0
|
11 |
*/
|
sl@0
|
12 |
|
sl@0
|
13 |
/** @def offsetof(type, member)
|
sl@0
|
14 |
|
sl@0
|
15 |
It returns the number of bytes that the field fieldname is offset from the beginning of the the structure structname.
|
sl@0
|
16 |
|
sl@0
|
17 |
@publishedAll
|
sl@0
|
18 |
@externallyDefinedApi
|
sl@0
|
19 |
*/
|
sl@0
|
20 |
|
sl@0
|
21 |
/** @typedef typedef __size_t size_t
|
sl@0
|
22 |
|
sl@0
|
23 |
A type to define sizes of strings and memory blocks.
|
sl@0
|
24 |
|
sl@0
|
25 |
@publishedAll
|
sl@0
|
26 |
@externallyDefinedApi
|
sl@0
|
27 |
*/
|