mirror of
https://github.com/github/codeql.git
synced 2025-12-29 07:06:43 +01:00
11 lines
304 B
C++
11 lines
304 B
C++
/* Example of good macros */
|
|
#define TCP_NODELAY 1
|
|
#define TCP_MAXSEG 2
|
|
#define TCP_CORK 3
|
|
|
|
/*
|
|
* In contrast, functions that use this macro are hard to read without
|
|
* knowing its exact definition
|
|
*/
|
|
#define JSKW_TEST_GUESS(index) i = (index); goto test_guess;
|