Skip to content
View nihguy's full-sized avatar
  • Freelancer
  • Passos, Minas Gerais
  • 11:34 (UTC -03:00)

Block or report nihguy

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Since the C11 standard, the C langua... Since the C11 standard, the C language offers the _Generic keyword, which acts as a compile-time switch and allows behavior similar to function overloading, which is common in C++.
    1
    // Note that functions initiated with static inline will be transformed into inline by the compiler 
    2
    // (tested on gcc and clang), and yet, the _Generic keyword is capable of identifying them correctly.
    3
    //
    4
    // (https://godbolt.org/z/Mo4rYsKn1)
    5