Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include/linux
File: stddef.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
[0] Fix | Delete
#ifndef _LINUX_STDDEF_H
[1] Fix | Delete
#define _LINUX_STDDEF_H
[2] Fix | Delete
[3] Fix | Delete
[4] Fix | Delete
[5] Fix | Delete
#ifndef __always_inline
[6] Fix | Delete
#define __always_inline __inline__
[7] Fix | Delete
#endif
[8] Fix | Delete
[9] Fix | Delete
/**
[10] Fix | Delete
* __struct_group() - Create a mirrored named and anonyomous struct
[11] Fix | Delete
*
[12] Fix | Delete
* @TAG: The tag name for the named sub-struct (usually empty)
[13] Fix | Delete
* @NAME: The identifier name of the mirrored sub-struct
[14] Fix | Delete
* @ATTRS: Any struct attributes (usually empty)
[15] Fix | Delete
* @MEMBERS: The member declarations for the mirrored structs
[16] Fix | Delete
*
[17] Fix | Delete
* Used to create an anonymous union of two structs with identical layout
[18] Fix | Delete
* and size: one anonymous and one named. The former's members can be used
[19] Fix | Delete
* normally without sub-struct naming, and the latter can be used to
[20] Fix | Delete
* reason about the start, end, and size of the group of struct members.
[21] Fix | Delete
* The named struct can also be explicitly tagged for layer reuse, as well
[22] Fix | Delete
* as both having struct attributes appended.
[23] Fix | Delete
*/
[24] Fix | Delete
#define __struct_group(TAG, NAME, ATTRS, MEMBERS...) \
[25] Fix | Delete
union { \
[26] Fix | Delete
struct { MEMBERS } ATTRS; \
[27] Fix | Delete
struct TAG { MEMBERS } ATTRS NAME; \
[28] Fix | Delete
}
[29] Fix | Delete
[30] Fix | Delete
#endif
[31] Fix | Delete
[32] Fix | Delete
/*
[33] Fix | Delete
* __DECLARE_FLEX_ARRAY() - Declare a flexible array usable in a union
[34] Fix | Delete
*
[35] Fix | Delete
* @TYPE: The type of each flexible array element
[36] Fix | Delete
* @NAME: The name of the flexible array member
[37] Fix | Delete
*
[38] Fix | Delete
* In order to have a flexible array member in a union or alone in a
[39] Fix | Delete
* struct, it needs to be wrapped in an anonymous struct with at least 1
[40] Fix | Delete
* named member, but that member can be empty.
[41] Fix | Delete
*/
[42] Fix | Delete
#define __DECLARE_FLEX_ARRAY(TYPE, NAME) \
[43] Fix | Delete
struct { \
[44] Fix | Delete
struct { } __empty_ ## NAME; \
[45] Fix | Delete
TYPE NAME[]; \
[46] Fix | Delete
}
[47] Fix | Delete
[48] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function