os/ossrv/genericopenlibs/openenvcore/include/stddef.dosc
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /** @file ../include/stddef.h
     2 @internalComponent
     3 */
     4 
     5 /** @typedef typedef	__ptrdiff_t	ptrdiff_t
     6 
     7 special type for pointer arithmetic
     8 
     9 @publishedAll
    10 @externallyDefinedApi
    11 */
    12 
    13 /** @def	offsetof(type, member)
    14 
    15 It returns the number of bytes that the field fieldname is offset from the beginning of the the structure structname.
    16 
    17 @publishedAll
    18 @externallyDefinedApi
    19 */
    20 
    21 /** @typedef typedef	__size_t	size_t
    22 
    23 A type to define sizes of strings and memory blocks.
    24 
    25 @publishedAll
    26 @externallyDefinedApi
    27 */