Last active
August 4, 2021 00:29
-
-
Save HQarroum/d69e86a9f8ab1774c7ac1d77a248da09 to your computer and use it in GitHub Desktop.
my_offsetof
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define my_offsetof(ptr, member_name) \ | |
(((size_t) (&(ptr)->member_name)) - ((size_t) ptr)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment