Skip to content
Snippets Groups Projects
Commit 56bda746 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Add a macro for the fairly common "eat next semicolon" syntax trick

You use this when you're defining a macro to be used at file scope,
and you want to require a semicolon afterwards.
parent 0944500a
No related branches found
No related tags found
No related merge requests found
......@@ -217,4 +217,16 @@
/** Macro: Yields the number of elements in array x. */
#define ARRAY_LENGTH(x) ((sizeof(x)) / sizeof(x[0]))
/**
* "Eat" a semicolon that somebody puts at the end of a top-level macro.
*
* Frequently, we want to declare a macro that people will use at file scope,
* and we want to allow people to put a semicolon after the macro.
*
* This declaration of a struct can be repeated any number of times, and takes
* a trailing semicolon afterwards.
**/
#define EAT_SEMICOLON \
struct dummy_semicolon_eater__
#endif /* !defined(TOR_COMPAT_H) */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment