Search

January 13, 2019
Learn »
...API static
    #endif
    #elif RS_C99
    #define RS_API static inline
    #elif defined(__GNUC__)
    #define...
September 09, 2018
General »
...type " failure at " __FILE__ ": " GSL_STRINGIFY(__LINE__))))

#elif defined(GSL_TERMINATE_ON_CONTRACT_VIOLATION)

#define...
May 08, 2018
General »
...n" -v RS="\n\n" '$1 ~ /'$2'/'
elif [ $# = 1 ]; then
        objdump -d $1 | awk -F...
January 31, 2018
General »
...matching ( is found. Ditto for { }, [ ], < >, and #if/#elif/#else/#endif (!). It's been incredibly convenient...
November 10, 2017
GDC »
...sun)

filename.c
---
#if _WIN32
            char sep = '\\';
#elif POSIX
            char sep = '/';
#endif
            if (path[strlen...
October 20, 2016
Learn »
...defined(__INTEL_COMPILER)
	#define YEP_MICROSOFT_COMPILER
#elif defined(__GNUC__) && !defined(__clang__) && !defined(__INTEL_COMPILER...
September 24, 2016
Issues »
...targ_llong;
typedef __UINT64_TYPE__    targ_ullong;
#elif defined(__UINTMAX_TYPE__)
typedef __INTMAX_TYPE__    targ...
June 27, 2016
General »
...platform libraries written in C with #if #elif and #endif all other the place (used...
June 25, 2016
General »
...was thinking for some time to have `elif` keyword. In this case it would be...
June 25, 2016
General »
...else
{

}

I could write shorter:

static if (...)
{

}
elif (...)
{

}
elif(...)
{

}
else
{

}

In other hand it maybe...
1 2 3
Next ›   Last »