meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Last revisionBoth sides next revision
programming:c:start [2020/07/03 09:47] – ↷ Page moved from programmin:c:start to programming:c:start niziakprogramming:c:start [2020/09/28 11:15] niziak
Line 38: Line 38:
         MAX_VALUE_SIGNED(a) : MAX_VALUE_UNSIGNED(a))         MAX_VALUE_SIGNED(a) : MAX_VALUE_UNSIGNED(a))
 </code>         </code>        
 +
 +====== sizeof ======
 +
 +<code c>
 +#define member_size(type, member) sizeof(((type *)0)->member)
 +</code>