What is the worst real-world macros/pre-processor abuse you've ever come across? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T07:36:24Z http://stackoverflow.com/feeds/question/652788 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across 52 What is the worst real-world macros/pre-processor abuse you've ever come across? Trevor Boyd Smith 2009-03-17T01:57:42Z 2009-11-25T14:01:45Z <p>What is the <em>worst</em> <strong>real-world</strong> macros/pre-processor abuse you've ever come across (please no contrived IOCCC answers *haha*)?</p> <p>Please add a short snippet or story if it is really entertaining. The goal is to teach something instead of always telling people "never use macros".</p> <p><hr /></p> <p>p.s.: I've used macros before... but usually I get rid of them eventually when I have a "real" solution (even if the real solution is inlined so it becomes similar to a macro).</p> <p><hr /></p> <p><strong>Bonus:</strong> Give an example where the macro was really was better than a not-macro solution.</p> <p><strong>Related question:</strong> <a href="http://stackoverflow.com/questions/96196/when-are-c-macros-beneficial">When are C++ macros beneficial?</a> </p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/652795#652795 54 Answer by Andy White for What is the worst real-world macros/pre-processor abuse you've ever come across? Andy White 2009-03-17T02:01:09Z 2009-11-03T06:21:46Z <pre><code>#define private public </code></pre> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/652800#652800 9 Answer by TofuBeer for What is the worst real-world macros/pre-processor abuse you've ever come across? TofuBeer 2009-03-17T02:03:22Z 2009-03-17T02:19:08Z <p>The worst one I saw was the non-use :-)</p> <p>Someone wrote a strcpy (I think that was it... over 10 years ago now) function inside of a method (because they didn't want the overhead of calling strcpy... sigh).</p> <p>They clued in that it wouldn't work for Japanese characters so they added an "if" at the start to do ASCII or Unicode. At that point the code was about a screen long... likely killing cache coherency and erasing his supposed savings for the inlining of the code.</p> <p>The code was identical save for the types (so should have used a macro).</p> <p>Of course the strcpy that they wrote was much much much slower than the hand tuned assembler one that was in the standard library...</p> <p>Of course if they had just done it all as a macro it could have been replaced with a call to strcpy...</p> <p>Of course I quit the company (not directly because of that...) </p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/652802#652802 76 Answer by Joel Spolsky for What is the worst real-world macros/pre-processor abuse you've ever come across? Joel Spolsky 2009-03-17T02:04:27Z 2009-03-17T02:04:27Z <pre><code>#define ever (;;) for ever { ... } </code></pre> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/652820#652820 56 Answer by paxdiablo for What is the worst real-world macros/pre-processor abuse you've ever come across? paxdiablo 2009-03-17T02:19:20Z 2009-03-17T02:19:20Z <p>The hideous:</p> <pre><code>#define begin { #define end } /* and so on */ </code></pre> <p>Seriously, if you want to code in Pascal, buy a Pascal compiler, don't destroy the beautiful C language.</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/652823#652823 9 Answer by Jonathan Leffler for What is the worst real-world macros/pre-processor abuse you've ever come across? Jonathan Leffler 2009-03-17T02:20:15Z 2009-03-17T03:16:21Z <p>One fairly bad example:</p> <pre><code>#ifdef __cplusplus #define class _vclass #endif </code></pre> <p>This allows a C structure that contains a member variable called <code>class</code> to be handled by a C++ compiler. There are two headers with this construct in it; one of them also contains '#undef class' at the end and the other doesn't.</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/652852#652852 45 Answer by dcw for What is the worst real-world macros/pre-processor abuse you've ever come across? dcw 2009-03-17T02:34:46Z 2009-03-17T02:34:46Z <p>An 'architect', very humle guy, you know the type, had the following:</p> <pre><code>#define retrun return </code></pre> <p>because he liked to type fast. The brain-surgeon used to like to shout at people who were smarter than him (which was pretty much everyone), and threaten to use his black-belt on them. </p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/652853#652853 2 Answer by sipwiz for What is the worst real-world macros/pre-processor abuse you've ever come across? sipwiz 2009-03-17T02:35:44Z 2009-03-17T02:35:44Z <p>When I first came across macros in C they had me stumped for days. Below is what I was faced with. I imagine it makes perfect sense to C experts and is super efficient however for me to try and work out what exactly was going on meant cutting and pasting all the different macros together until the whole function could be viewed. Surely that's not good practice?! What's wrong with using a plain old function?!</p> <pre><code>#define AST_LIST_MOVE_CURRENT(newhead, field) do { \ typeof ((newhead)-&gt;first) __list_cur = __new_prev; \ AST_LIST_REMOVE_CURRENT(field); \ AST_LIST_INSERT_TAIL((newhead), __list_cur, field); \ } while (0) </code></pre> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/652864#652864 153 Answer by jeffamaphone for What is the worst real-world macros/pre-processor abuse you've ever come across? jeffamaphone 2009-03-17T02:38:07Z 2009-03-17T02:38:07Z <p>My worst:</p> <pre><code>#define InterlockedIncrement(x) (x)++ #define InterlockedDecrement(x) (x)-- </code></pre> <p>I spent two days of my life tracking down some multi-threaded COM ref-counting issue because some idiot put this in a header file. I won't mention the company I worked for at the time. </p> <p>The moral of this story? If you don't understand something, read the documentation and learn about it. Don't just make it go away.</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/652866#652866 4 Answer by dcw for What is the worst real-world macros/pre-processor abuse you've ever come across? dcw 2009-03-17T02:38:29Z 2009-03-17T02:38:29Z <p>The obligatory</p> <pre><code>#define FOR for </code></pre> <p>and</p> <pre><code>#define ONE 1 #define TWO 2 ... </code></pre> <p>Who knew?</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/652869#652869 10 Answer by MrValdez for What is the worst real-world macros/pre-processor abuse you've ever come across? MrValdez 2009-03-17T02:42:32Z 2009-03-17T04:37:02Z <p>The use of the LINE preprocessor to generate unique ID for messages passed over the network:</p> <pre><code>NetworkMessages.h #define MSG_LOGIN __LINE__ #define MSG_LOGOUT __LINE__ #define MSG_CHAT __LINE__ </code></pre> <p>This is an example where the macro really was better than a non-macro solution:</p> <p>In a non-macro solution classes, functions and variables have to be built to keep track of what ID the message is. The developer may or may not make the message ID tracking complicated whereas this is easier to read and debug.</p> <p>In addition, its easier to add new messages just by adding the message into the source.</p> <p>The disadvantage of this situation is that the file has to be included in all code that uses messages. Compile time would increase whenever a message is edited.</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/652896#652896 27 Answer by MrValdez for What is the worst real-world macros/pre-processor abuse you've ever come across? MrValdez 2009-03-17T03:02:45Z 2009-03-17T03:51:26Z <p>Windows.h has a lot of functions that abused macros.</p> <p><hr /></p> <p>MrValdez is annoyed by the GetObject macro found in Windows.h</p> <p>The GetObject macro changes the GetObject() function into GetObjectA() or GetObjectW() (depending if the build is compiled in non-unicode and unicode, respectively)</p> <p>MrValdez hates having to do before the GetObject function line</p> <pre><code>#undef GetObject Object *GetObject() </code></pre> <p>The alternative is to change the function name to something else like GetGameObject()</p> <p><hr /></p> <p>jdkoftinoff in the comments have nailed it: The problem is that all windows API functions are macros.</p> <p>Adam Rosenfield mentioned that that the issues can be fixed by defining NOGDI, WIN32_LEAN_AND_MEAN, NOMINMAX, etc before including windows.h to remove the issues.</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/652915#652915 8 Answer by MrValdez for What is the worst real-world macros/pre-processor abuse you've ever come across? MrValdez 2009-03-17T03:13:53Z 2009-09-20T20:27:08Z <p><a href="http://rads.stackoverflow.com/amzn/click/1584500778" rel="nofollow">AI Game Programming Wisdom</a> has a chapter where macros were used to create a <strong>scripting language</strong> for finite state machines. </p> <p>Since the book and code are copyrighted material, here's a <a href="http://books.google.com/books?id=4f5Gszjyb8EC&amp;pg=PA326&amp;lpg=PA326&amp;dq=macro+ai+game&amp;source=bl&amp;ots=9ASPntSylj&amp;sig=KNg7dAxVv5cRdI75yDjBaFThi7U&amp;hl=en&amp;ei=NRS%5FSZtpj4w1w4PAqA0&amp;sa=X&amp;oi=book%5Fresult&amp;resnum=6&amp;ct=result" rel="nofollow">Google book link</a> to the page detailing the macros (The resulting script language can be found on page 324.)</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/652925#652925 1 Answer by Jonathan Leffler for What is the worst real-world macros/pre-processor abuse you've ever come across? Jonathan Leffler 2009-03-17T03:22:06Z 2009-03-17T03:37:21Z <p>Another piece of 'creative' use of the preprocessor, though it is more in the terminology employed than in the mechanics (which are incredibly mundane):</p> <pre><code>/*********************************************************************** * OS2 and PCDOS share a lot of common codes. However, sometimes * OS2 needs codes similar to those of UNIX. NOTPCDOS is used in these * situations */ #ifdef OS2 #define PCDOS #define NOTPCDOS #else /* OS2 */ #ifndef PCDOS #define NOTPCDOS #endif /* PCDOS */ #endif /* OS2 */ </code></pre> <p>Genuine code - I thought I'd removed it, but apparently not. I must have done so out in some temporary branch and not gotten permission to check it back into the main code. One more item for the 'to do' list.</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/652945#652945 183 Answer by Ryan for What is the worst real-world macros/pre-processor abuse you've ever come across? Ryan 2009-03-17T03:31:59Z 2009-06-25T19:34:03Z <p>From memory, it looked something like this:</p> <pre><code>#define RETURN(result) return (result);} int myfunction1(args) { int x = 0; // do something RETURN(x) int myfunction2(args) { int y = 0; // do something RETURN(z) int myfunction3(args) { int z = 0; // do something RETURN(z) </code></pre> <p>Yes that's right, no closing braces in any of the functions. Syntax highlighting was a mess, so he used vi to edit (not vim, it has syntax coloring!)</p> <p>He was a Russian programmer who had mostly worked in assembly language. He was fanatical about saving as many bytes as possible because he had previously worked on systems with very limited memory. "It was for satellite. Only very few byte, so we use each byte over for many things." (bit fiddling, reusing machine instruction bytes for their numeric values) When I tried to find out what kinds of satellites, I was only able to get "Orbiting satellite. For making to orbit."</p> <p>He had two other quirks: A convex mirror mounted above his monitor "For knowing who is watching", and an occasional sudden exit from his chair to do a quick ten pushups. He explained this last one as "Compiler found error in code. This is punishment". </p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/652951#652951 46 Answer by Michael McCarty for What is the worst real-world macros/pre-processor abuse you've ever come across? Michael McCarty 2009-03-17T03:36:12Z 2009-07-01T03:57:07Z <pre><code>#define if while </code></pre> <p>It was joke played on someone, it wasn't found amusing by those affected</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/653001#653001 11 Answer by dehmann for What is the worst real-world macros/pre-processor abuse you've ever come across? dehmann 2009-03-17T04:08:47Z 2009-03-17T04:08:47Z <pre><code>#include &lt;iostream&gt; #define public_static_void_main(x) int main() #define System_out_println(x) std::cout &lt;&lt; x &lt;&lt; std::endl public_static_void_main(String[] args) { System_out_println("Hello World!"); } </code></pre> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/653017#653017 33 Answer by 1800 INFORMATION for What is the worst real-world macros/pre-processor abuse you've ever come across? 1800 INFORMATION 2009-03-17T04:21:08Z 2009-03-17T04:21:08Z <p>Raymond Chen has a <a href="http://blogs.msdn.com/oldnewthing/archive/2005/01/06/347666.aspx" rel="nofollow">really good rant against using flow control macros</a>. His best example is straight from the original Bourne shell source code:</p> <pre><code>ADDRESS alloc(nbytes) POS nbytes; { REG POS rbytes = round(nbytes+BYTESPERWORD,BYTESPERWORD); LOOP INT c=0; REG BLKPTR p = blokp; REG BLKPTR q; REP IF !busy(p) THEN WHILE !busy(q = p-&gt;word) DO p-&gt;word = q-&gt;word OD IF ADR(q)-ADR(p) &gt;= rbytes THEN blokp = BLK(ADR(p)+rbytes); IF q &gt; blokp THEN blokp-&gt;word = p-&gt;word; FI p-&gt;word=BLK(Rcheat(blokp)|BUSY); return(ADR(p+1)); FI FI q = p; p = BLK(Rcheat(p-&gt;word)&amp;~BUSY); PER p&gt;q ORF (c++)==0 DONE addblok(rbytes); POOL } </code></pre> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/653026#653026 1 Answer by Mikeage for What is the worst real-world macros/pre-processor abuse you've ever come across? Mikeage 2009-03-17T04:30:47Z 2009-03-17T10:14:26Z <p>Good macros: (although personally I dislike the double parentheses required to use this syntax; I prefer either vararg macros (C99 only) or something like PRINTF_0, PRINTF_1, etc, depending on the number of arguments)</p> <pre><code>#ifdef DEBUG #define PRINTF(x) printf x #else #define PRINTF(x) #endif </code></pre> <p>Reduces code size / execution time (the first more than the second) for non-debug build; also prevents leaking debug text strings which may pose a smallish security risk</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/653028#653028 55 Answer by Frank for What is the worst real-world macros/pre-processor abuse you've ever come across? Frank 2009-03-17T04:32:05Z 2009-03-17T04:32:05Z <pre><code>#include &lt;iostream&gt; #define System S s;s #define public #define static #define void int #define main(x) main() struct F{void println(char* s){std::cout &lt;&lt; s &lt;&lt; std::endl;}}; struct S{F out;}; public static void main(String[] args) { System.out.println("Hello World!"); } </code></pre> <p>Challenge: Can anyone do it with fewer defines and structs? ;-)</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/653033#653033 1 Answer by Aaron for What is the worst real-world macros/pre-processor abuse you've ever come across? Aaron 2009-03-17T04:34:37Z 2009-03-17T04:34:37Z <p>Related to Raymond's rant is the following horrible (in my opinion, of course) macro:</p> <pre><code>#define CALL_AND_CHECK(func, arg) \ int result = func(arg); \ if(0 != result) \ { \ sys.exit(-1); \ } \ </code></pre> <p>I was pretty new to the practice of using macros and used this macro, but I <em>expected</em> the function that I passed to it to fail. And I was doing it in a background thread, so it stumped me for days why my entire app was "crashing".</p> <p>As an aside, if only std::tr1::function was around when this macro was written, I would have a week of my life back!</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/653054#653054 0 Answer by coxymla for What is the worst real-world macros/pre-processor abuse you've ever come across? coxymla 2009-03-17T04:53:27Z 2009-09-20T20:31:54Z <p>Found in declarations, to much confusion: </p> <pre><code>NON_ZERO_BYTE Fixed(8) Constant('79'X), </code></pre> <p>Found later: </p> <pre><code>IF WORK_AREA(INDEX) = ZERO_BYTE THEN /* found zero byte */ WORK_AREA(INDEX) = NON_ZERO_BYTE ; /* reset to nonzero*/ </code></pre> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/653104#653104 1 Answer by Dan O for What is the worst real-world macros/pre-processor abuse you've ever come across? Dan O 2009-03-17T05:33:40Z 2009-08-09T01:50:02Z <p>The worst abuses (and I'm guilty of doing this occasionally) is using the preprocessor as some sort of data file replacement, ie:</p> <pre><code>#define FOO_RELATION \ BAR_TUPLE( A, B, C) \ BAR_TUPLE( X, Y, Z) \ </code></pre> <p>and then somewhere else:</p> <pre><code>#define BAR_TUPLE( p1, p2, p3) if( p1 ) p2 = p3; FOO_RELATION #undef BAR_TUPLE </code></pre> <p>which will result in:</p> <pre><code>if( A ) B = C; if( X ) Y = Z; </code></pre> <p>This pattern can be used to do all sorts of (terrible) stuff... generate switch statements or huge if else blocks, or interface with "real" code. You could even use it to ::cough:: generate a context menu in a non-oo context menu system ::cough::. Not that I'd ever do anything so lame.</p> <p>Edit: fixed mismatched parenthesis and expanded example</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/653124#653124 19 Answer by Andrew Shepherd for What is the worst real-world macros/pre-processor abuse you've ever come across? Andrew Shepherd 2009-03-17T05:52:00Z 2009-03-17T05:52:00Z <p>The worst I've ever encountered was in a product containing a suite of executables where the designated technical leader hadn't figured out libraries.</p> <p>Instead, he had sets of files that were shared in several Visual Source Safe folders. He then realised they needed to behave slightly differently for each application. </p> <p>There's a number of refactoring steps you could apply here.</p> <p>Instead, he used #ifdefs</p> <pre><code> void DisplayLoadError() { #if defined __TIMETABLE_EDITOR MessageBox("Timetable Editor failed to load the correct timetable", MB_ERROR); #else if defined __SCHEDULESET_EDITOR MessageBox("Schedule Set Editor faied to load the correct Schedule Set", MB_ERROR); #else if defined __ROSTER_EDITOR MessageBox("Roster Editor failed to load the correct Roster", MB_ERROR); #endif } </code></pre> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/653144#653144 1 Answer by Johan for What is the worst real-world macros/pre-processor abuse you've ever come across? Johan 2009-03-17T06:03:10Z 2009-03-17T06:03:10Z <p>Try to debug big project that really loves macros, and there is a lot of macros that calls other macros that calls other macros etc etc. (5-10 levels of macros was not that uncommon)</p> <p>And then top it up with a lot of #ifdef this macrot #else that macro, so if you follow the code it like a tree of different paths it can go.</p> <p>The only solution is most cases was to precompile and read that instead....</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/653179#653179 1 Answer by bvk for What is the worst real-world macros/pre-processor abuse you've ever come across? bvk 2009-03-17T06:27:13Z 2009-03-17T10:14:50Z <pre><code>#define private public </code></pre> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/653311#653311 21 Answer by dribeas for What is the worst real-world macros/pre-processor abuse you've ever come across? dribeas 2009-03-17T07:35:48Z 2009-03-17T10:13:19Z <p>Directly from Qt:</p> <pre><code>#define slots /* */ #define signals /* */ </code></pre> <p>Really nice to interact with other libs as boost::signals... Just an example, there are many others in Qt that create funny looking code like:</p> <pre><code>class X : public QObject { Q_OBJECT private slots: //... public signals: //... }; </code></pre> <p>And that is C++... but suddenly:</p> <pre><code>boost::signals::trackable </code></pre> <p>Is not valid C++ any more.</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/653663#653663 26 Answer by mouviciel for What is the worst real-world macros/pre-processor abuse you've ever come across? mouviciel 2009-03-17T10:22:45Z 2009-03-17T10:22:45Z <p>A mix between Pascal syntax and french keywords:</p> <pre><code>#define debut { #define fin } #define si if( #define alors ){ #define sinon }else{ #define finsi } </code></pre> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/653686#653686 25 Answer by xtofl for What is the worst real-world macros/pre-processor abuse you've ever come across? xtofl 2009-03-17T10:36:22Z 2009-03-17T10:36:22Z <p>Real-world? MSVC has macros in minmax.h, called <code>max</code> and <code>min</code>, which cause a compiler error every time I intend to use the standard <code>std::numeric_limits&lt;T&gt;::max()</code> function.</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/662119#662119 6 Answer by Kaz Dragon for What is the worst real-world macros/pre-processor abuse you've ever come across? Kaz Dragon 2009-03-19T13:04:27Z 2009-09-23T16:21:27Z <p>In one year of the International Obfuscated C Coding Contest, there was an entry where the entire program was:</p> <p><code>P</code></p> <p>With the proviso that you could define <code>P</code> in the makefile to be whatever program you wanted.</p> <p>As I recall, it won in one of the categories, and the next year a rule had popped up disallowing that style of entry.</p> <p>(Edit: six months later or something... I'm sure the "No IOCCC" thing wasn't in the main question when I wrote this...)</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/662623#662623 0 Answer by Greg for What is the worst real-world macros/pre-processor abuse you've ever come across? Greg 2009-03-19T15:22:26Z 2009-03-19T15:22:26Z <pre><code>#define protected private </code></pre> <p>Seemed like a good idea sometimes, but if you need to, you should probably just string replace anyway. Protected is fairly evil, allowing internal access to descendants isn't much better than just making the items public...</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1045563#1045563 3 Answer by Dolphin for What is the worst real-world macros/pre-processor abuse you've ever come across? Dolphin 2009-06-25T18:42:48Z 2009-06-25T18:42:48Z <pre><code>switch (device_id) { #ifndef PROD_1 #ifndef PROD_2 #ifdef PROD_3 case ID_1: #endif #ifdef PROD_4 #ifdef PROD_5 case ID_2: case ID_3: case ID_4: #elif defined(PROD_4) #ifndef PROD_6 case ID_1: #endif // PROD_6 case ID_5: #endif case ID_6: #endif #ifdef PROD_7 #ifndef PROD_8 case ID_7: #endif #endif </code></pre> <p>(names changed to protect the not so innocent)</p> <p>Notice that we haven't even gotten to any code yet, this is just to get to the first actual bit of code. This actually happens (in almost, but not exactly the same way) for several functions, each of which, in the end only have 4 possible variations (which are also mostly copy/paste with slight variations and #ifdefs of their own).</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1045726#1045726 18 Answer by Grant Limberg for What is the worst real-world macros/pre-processor abuse you've ever come across? Grant Limberg 2009-06-25T19:18:28Z 2009-06-25T19:24:23Z <p>A coworker and I found these two gems in some of our code for object streaming. These macros were instantiated in <strong><em>EVERY SINGLE</em></strong> class file that did streaming. Not only is this hideous code spewed all over our code base, when we approached the original author about it, he wrote a 7 page article on our internal wiki defending this as the only possible way to accomplish what he was attempting to do here. </p> <p>Needless to say, it has since been refactored out and is no longer used in our code base.</p> <p><strong>Don't be thrown off by the highlighted keywords. This is ALL a macro</strong></p> <pre><code>#define DECLARE_MODIFICATION_REQUEST_PACKET( T ) \ namespace NameSpace \ { \ \ class T##ElementModificationRequestPacket; \ } \ \ DECLARE_STREAMING_TEMPLATES( IMPEXP_COMMON_TEMPLATE_DECLARE, NameSpace::ElementModificationRequestPacket&lt;T&gt;, OtherNameSpace::NetPacketBase ) \ DLLIMPEXP_COMMON_TEMPLATE_DECLARE( NameSpace::ElementModificationRequestPacket&lt;T&gt; ) \ DECLARE_AUTOGENERATION_TEMPLATES( DLLIMPEXP_COMMON_TEMPLATE_DECLARE, NameSpace::T##ModificationRequestPacket, NameSpace::ElementModificationRequestPacket&lt;T&gt; ) \ \ namespace NameSpace { \ class DLLIMPEXP_COMMON T##ModificationRequestPacket : public ElementModificationRequestPacket&lt;T&gt;\ { \ public: \ T##ModificationRequestPacket( NetBase * pParent ) \ : ElementModificationRequestPacket&lt;T&gt;( pParent ), m_Gen() {} \ \ T##ModificationRequestPacket( NetBase * pParent, \ Action eAction, \ const T &amp; rT ) \ : ElementModificationRequestPacket&lt;T&gt;( pParent, eAction, rT ), m_Gen() {} \ \ T##ModificationRequestPacket( const T##ModificationRequestPacket &amp; rhs ) \ : ElementModificationRequestPacket&lt;T&gt;( rhs ), m_Gen() {} \ \ virtual ~T##ModificationRequestPacket( void ) {} \ \ virtual Uint32 GetPacketTypeID( void ) const \ { \ return Net::T##_Modification_REQUEST_PACKET; \ } \ \ virtual OtherNameSpace::ClassID GetClassID ( void ) const \ { \ return OtherNameSpace::NetBase::GenerateHeader( OtherNameSpace::ID__LICENSING, \ Net::T##_Modification_REQUEST_PACKET ); \ } \ \ virtual T##ModificationRequestPacket * Create( void ) const \ { return new T##ModificationRequestPacket( m_pParent ); } \ \ T##ModificationRequestPacket() {} \ \ protected: \ OtherNameSpace::ObjectAutogeneration&lt;T##ModificationRequestPacket&gt; m_Gen; \ \ friend class OtherNameSpace::StreamingBase::StreamingClassInfoT&lt;T##ModificationRequestPacket &gt;; \ OtherNameSpace::StreamingBase::Streaming&lt;T##ModificationRequestPacket, ElementModificationRequestPacket&lt;T&gt; &gt; m_Stream; \ \ }; \ } \ DLLIMPEXP_COMMON_TEMPLATE_DECLARE( ThirdNameSpace::ListenerBase&lt;const NameSpace::T##ModificationRequestPacket&gt; ) \ DLLIMPEXP_COMMON_TEMPLATE_DECLARE( ThirdNameSpace::BroadcasterT&lt;const NameSpace::T##ModificationRequestPacket&gt; ) \ typedef ThirdNameSpace::BroadcasterT&lt;const T##ModificationRequestPacket&gt; T##ModifiedBroadcaster; #define IMPLEMENT_MODIFICATION_REQUEST_PACKET( T ) \ DLLIMPEXP_COMMON_TEMPLATE_INSTANTIATE( NameSpace::ElementModificationRequestPacket&lt;T&gt; ) \ DLLIMPEXP_COMMON_TEMPLATE_INSTANTIATE( ThirdNameSpace::ListenerBase&lt;const NameSpace::T##ModificationRequestPacket&gt; ) \ DLLIMPEXP_COMMON_TEMPLATE_INSTANTIATE( ThirdNameSpace::BroadcasterT&lt;const NameSpace::T##ModificationRequestPacket&gt; ) \ INSTANTIATE_STREAMING_TEMPLATES( DLLIMPEXP_COMMON_TEMPLATE_INSTANTIATE, NameSpace::ElementModificationRequestPacket&lt;T&gt;, OtherNameSpace::NetPacketBase ) \ INSTANTIATE_AUTOGENERATION_TEMPLATES( DLLIMPEXP_COMMON_TEMPLATE_INSTANTIATE, NameSpace::T##ModificationRequestPacket, NameSpace::ElementModificationRequestPacket&lt;T&gt; ) </code></pre> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1045763#1045763 6 Answer by Steve for What is the worst real-world macros/pre-processor abuse you've ever come across? Steve 2009-06-25T19:26:36Z 2009-06-25T19:26:36Z <p>ASA - <a href="http://www.ingber.com/#ASA" rel="nofollow">http://www.ingber.com/#ASA</a></p> <p>You really have to download it to appreciate it. The entire work flow is determined by macros. It is completely unreadable. As an example - </p> <pre><code> if (asa_open == FALSE) { asa_open = TRUE; ++number_asa_open; #if ASA_PRINT if (number_asa_open == 1) { /* open the output file */ #if USER_ASA_OUT if (!strcmp (OPTIONS-&gt;Asa_Out_File, "STDOUT")) { #if INCL_STDOUT ptr_asa_out = stdout; #endif /* INCL_STDOUT */ } else { #if ASA_SAVE ptr_asa_out = fopen (OPTIONS-&gt;Asa_Out_File, "a"); #else ptr_asa_out = fopen (OPTIONS-&gt;Asa_Out_File, "w"); #endif } #else /* USER_ASA_OUT */ if (!strcmp (ASA_OUT, "STDOUT")) { #if INCL_STDOUT ptr_asa_out = stdout; #endif /* INCL_STDOUT */ } else { #if ASA_SAVE ptr_asa_out = fopen (ASA_OUT, "a"); #else ptr_asa_out = fopen (ASA_OUT, "w"); #endif } #endif /* USER_ASA_OUT */ } else { #if USER_ASA_OUT if (!strcmp (OPTIONS-&gt;Asa_Out_File, "STDOUT")) { #if INCL_STDOUT ptr_asa_out = stdout; #endif /* INCL_STDOUT */ } else { ptr_asa_out = fopen (OPTIONS-&gt;Asa_Out_File, "a"); } #else if (!strcmp (ASA_OUT, "STDOUT")) { #if INCL_STDOUT ptr_asa_out = stdout; #endif /* INCL_STDOUT */ } else { ptr_asa_out = fopen (ASA_OUT, "a"); } #endif fprintf (ptr_asa_out, "\n\n\t\t number_asa_open = %d\n", number_asa_open); } #endif /* ASA_PRINT */ } else { ++recursive_asa_open; #if ASA_PRINT if (recursive_asa_open == 1) { /* open the output file */ #if ASA_SAVE #if USER_ASA_OUT if (!strcmp (OPTIONS-&gt;Asa_Out_File, "STDOUT")) { #if INCL_STDOUT ptr_asa_out = stdout; #endif /* INCL_STDOUT */ } else { ptr_asa_out = fopen (OPTIONS-&gt;Asa_Out_File, "a"); } #else if (!strcmp (ASA_OUT, "STDOUT")) { #if INCL_STDOUT ptr_asa_out = stdout; #endif /* INCL_STDOUT */ } else { ptr_asa_out = fopen (ASA_OUT, "a"); } #endif #else /* ASA_SAVE */ #if USER_ASA_OUT if (!strcmp (OPTIONS-&gt;Asa_Out_File, "STDOUT")) { #if INCL_STDOUT ptr_asa_out = stdout; #endif /* INCL_STDOUT */ } else { </code></pre> <p>etc., etc.</p> <p>And that is just setting up the options. the entire program is like that.</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1045833#1045833 4 Answer by void for What is the worst real-world macros/pre-processor abuse you've ever come across? void 2009-06-25T19:42:52Z 2009-09-18T16:59:02Z <p>I maintain code that has gotos in macros. So a function will have a label at the end but no visible goto in the function code. To make matters worse the macro is at the end of other statements usually off the screen unless you scroll horizontally.</p> <pre><code>#define CHECK_ERROR if (!SomeCondition) goto Cleanup void SomeFunction() { SomeLongFunctionName(ParamOne, ParamTwo, ParamThree, ParamFour); CHECK_ERROR //SomeOtherCode Cleanup: //Cleanup code } </code></pre> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1045858#1045858 0 Answer by Greg D for What is the worst real-world macros/pre-processor abuse you've ever come across? Greg D 2009-06-25T19:48:11Z 2009-06-25T19:48:11Z <p>Any macro that uses the token concatenation operator <code>##</code>.</p> <p>I saw one that a colleague of mine had the pleasure of working with. They tried to make a custom-implementation of string interning, so they re-implemented strings using a massive number of macros that (of course) didn't work properly. Trying to figure out what it did made my eyes explode because of all the <code>##</code>'s scattered about.</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1045953#1045953 13 Answer by Ryu for What is the worst real-world macros/pre-processor abuse you've ever come across? Ryu 2009-06-25T20:05:10Z 2009-09-20T20:28:22Z <p>In college somebody in my class did this:</p> <pre><code>#define CUNT const unsigned int </code></pre> <p>It makes sense, but I think he did it because he didn't like our teacher.</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1067349#1067349 5 Answer by Jim Ferrans for What is the worst real-world macros/pre-processor abuse you've ever come across? Jim Ferrans 2009-07-01T05:05:46Z 2009-08-20T01:44:37Z <p>At Lucent, I once took a look at the source code of Steve Bourne's original Unix shell, and found he'd used the C pre-processor to make C look like <s>Pascal or</s> Algol. The part dealing with if statements looked something like this:</p> <pre><code>#define IF if ( #define THEN ) { #define ELSE } else { #define FI } </code></pre> <p>A friend of mine told me he'd done some maintenance on it in the mid-1990s, and it was still the same. (There's a lesson here for us in the inherent conservatism of a code base.)</p> <p>Of course Steve did this as an experiment in the early days, and I'm sure would have had second thoughts if he'd written it later. </p> <p>Update: According to Wikipedia's <a href="http://en.wikipedia.org/wiki/Bourne%5Fshell" rel="nofollow">Bourne Shell article</a>, the macros gave it an <strong>Algol 68</strong> flavor. And, the <a href="http://minnie.tuhs.org/UnixTree/V7/usr/src/cmd/sh/mac.h.html" rel="nofollow">full set of macros</a> is here! They apparently influenced the founders of the International Obfuscated C Code Contest.</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1069379#1069379 0 Answer by Eduardo León for What is the worst real-world macros/pre-processor abuse you've ever come across? Eduardo León 2009-07-01T14:19:49Z 2009-07-01T14:19:49Z <p>I have used header files as big macros:</p> <pre><code>// compile-time-caller.h #define param1 ... #define param2 ... #include "killer-header.h" // killer-header.h // uses param1 and param2 </code></pre> <p>I have also created <em>recursive</em> header files.</p> <pre><code>// compile-time-caller.h #define param1 ... #define param2 ... #include "killer-header.h" // killer-header.h" #if ... // conditional taking param1 and param2 as parameters #define temp1 param1 #define temp2 param2 #define param1 ... // expression taking temp1 and temp2 as parameters #define param2 ... // expression taking temp1 and temp2 as parameters #include "killer-header.h" // some actual code #else // more actual code #endif </code></pre> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1242177#1242177 17 Answer by Andrew Y for What is the worst real-world macros/pre-processor abuse you've ever come across? Andrew Y 2009-08-07T00:00:14Z 2009-08-07T00:00:14Z <p>I would like to submit for the contest a gem called <a href="http://chaos-pp.cvs.sourceforge.net/chaos-pp/order-pp/example/bottles.c?revision=1.10&amp;view=markup" rel="nofollow">chaos-pp</a>, which implements a functional language by means of the preprocessor macros.</p> <p>One of the examples is calculating the 500th fibonacci number entirely by the preprocessor:</p> <p>The original code before preprocessor looks as this:</p> <pre><code>int main(void) { printf ("The 500th Fibonacci number is " ORDER_PP(8stringize(8to_lit(8fib(8nat(5,0,0))))) ".\n"); return 0; } </code></pre> <p>preprocessing the file we get the following result (after a rather long wait):</p> <pre><code>$ cpp -I../inc fibonacci.c 2&gt;/dev/null | tail return fib_iter(n, 0, 1); } # 63 "fibonacci.c" int main(void) { printf ("The 500th Fibonacci number is " "139423224561697880139724382870407283950070256587697307264108962948325571622863290691557658876222521294125" ".\n"); return 0; } </code></pre> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1242353#1242353 1 Answer by Grant Peters for What is the worst real-world macros/pre-processor abuse you've ever come across? Grant Peters 2009-08-07T00:56:26Z 2009-08-07T00:56:26Z <p>I agree that for the most part, macros are horrible to use, but i have found a few instances where they have been useful.</p> <p>This one is actually brilliant IMHO, as you can only get something similar with sprintf, which then requires resource allocations and whatnot, plus, all work is done entirely by the preprocessor</p> <pre><code>// Macro: Stringize // // Converts the parameter into a string // #define Stringize( L ) #L // Macro: MakeString // // Converts the contents of a macro into a string // #define MakeString( L ) Stringize(L) // Macro: $LINE // // Gets the line number as a string // #define $LINE MakeString( __LINE__ ) // Macro: $FILE_POS // // Gets the current file name and current line number in a format the Visual Studio // can interpret and output goto // // NOTE: For VS to properly interpret this, it must be at the start of the line (can only have whitespace before) // #define $FILE_POS __FILE__ "(" $LINE ") : " </code></pre> <p>The other that I loathe to use, but find it extremely useful is doing something like this, which basically allows me to quickly generate templates that have a variable number of template parameters</p> <pre><code>#define TEMPLATE_DEFS typename ReturnType #define TEMPLATE_DECL ReturnType #define FUNCTION_PARAMS void #define FUNCTION_PASS #define GENERIC_CALLBACK_DECL_NAME CallbackSafePointer0 #include "Callback.inl" #define TEMPLATE_DEFS typename ReturnType, typename P1 #define TEMPLATE_DECL ReturnType, P1 #define FUNCTION_PARAMS P1 param1 #define FUNCTION_PASS param1 #define GENERIC_CALLBACK_DECL_NAME CallbackSafePointer1 #include "Callback.inl" #define TEMPLATE_DEFS typename ReturnType, typename P1, typename P2 #define TEMPLATE_DECL ReturnType, P1, P2 #define FUNCTION_PARAMS P1 param1, P2 param2 #define FUNCTION_PASS param1, param2 #define GENERIC_CALLBACK_DECL_NAME CallbackSafePointer2 #include "Callback.inl" #define TEMPLATE_DEFS typename ReturnType, typename P1, typename P2, typename P3 #define TEMPLATE_DECL ReturnType, P1, P2, P3 #define FUNCTION_PARAMS P1 param1, P2 param2, P3 param3 #define FUNCTION_PASS param1, param2, param3 #define GENERIC_CALLBACK_DECL_NAME CallbackSafePointer3 #include "Callback.inl" // and so on... </code></pre> <p>Although this makes it kind of horrible to read "Callback.inl", it does completely eliminate rewriting the same code with a different number of arguments. I should also mention that "Callback.inl" #undefs all of the macros at the end of the file, hence, the macros themselves won't interfere with any other code, it just makes "Callback.inl" a little harder to write (reading and debuging isn't too hard though)</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1244571#1244571 1 Answer by Bill Casarin for What is the worst real-world macros/pre-processor abuse you've ever come across? Bill Casarin 2009-08-07T12:58:01Z 2009-09-20T20:34:00Z <p>I once put together this horrifying C++ code which used macros to help hook functions into the import table of DLLs.</p> <pre><code> #define ARGLIST(...) __VA_ARGS__ #define CPPTYPELESSARG(typelessParams) thisptr, typelessParams #define CPPTYPEDARG(typedParams) void* thisptr, typedParams #define CPPTYPELESSNOARG thisptr #define CPPTYPEDNOARG void* thisptr #define CPPHOOKBODY(hookName, params) void *thisptr; \ __asm { mov thisptr, ecx } \ return On##hookName ( params ); #define CHOOKBODY(hookName, typelessParams) return On##hookName( typelessParams ); #define CPPHOOK(InjectHookRef, importLib, importFunc, hookName, returnType, typedParams, typelessParams) \ HOOKIMPL(InjectHookRef, importLib, importFunc, hookName, returnType, CPPTYPEDARG(typedParams), typelessParams, \ typedParams, __thiscall, __stdcall, CPPHOOKBODY(hookName, CPPTYPELESSARG(typelessParams))) #define CPPHOOKNOARG(InjectHookRef, importLib, importFunc, hookName, returnType, typedParams, typelessParams) \ HOOKIMPL(InjectHookRef, importLib, importFunc, hookName, returnType, CPPTYPEDNOARG, typelessParams, \ typedParams, __thiscall, __stdcall, CPPHOOKBODY(hookName, CPPTYPELESSNOARG)) #define CDECLHOOK(InjectHookRef, importLib, importFunc, hookName, returnType, typedParams, typelessParams) \ HOOKIMPL(InjectHookRef, importLib, importFunc, hookName, returnType, typedParams, typelessParams, \ typedParams, __cdecl, __cdecl, CHOOKBODY(hookName, typelessParams)) #define CDECLFUNC(name, address, returnType, args) \ typedef returnType (__cdecl *name##Ptr)(args); \ name##Ptr name = (name##Ptr) address; #define CPPFUNC(name, address, returnType, args) \ typedef returnType (__thiscall *name##Ptr)(void* thisptr, args); \ name##Ptr name = (name##Ptr) address; #define STDFUNC(name, address, returnType, args) \ typedef returnType (__stdcall *name##Ptr)(args); \ name##Ptr name = (name##Ptr) address; #define STDHOOK(InjectHookRef, importLib, importFunc, hookName, returnType, typedParams, typelessParams) \ HOOKIMPL(InjectHookRef, importLib, importFunc, hookName, returnType, typedParams, typelessParams, \ typedParams, __stdcall, __stdcall, CHOOKBODY(hookName, ARGLIST(typelessParams))) #define HOOKIMPL(InjectHookRef, importLib, importFunc, hookName, returnType, typedParams, typelessParams, hookParams, fnPtrCall, hookCall, hookBody) \ typedef returnType (fnPtrCall *##hookName##OrigPtr )( typedParams ); \ class hookName : public IHook \ { \ public: \ typedef hookName##OrigPtr func_type; \ private: \ static void* m_origFunction; \ static bool m_bModifyImport; \ static std::string m_lib; \ static std::string m_importFunc; \ static std::string m_sHookName; \ static returnType hookCall hookName##FnHook ( hookParams ) \ { \ hookBody \ } \ static bool ImplIsModifyImport() { return hookName::m_bModifyImport; } \ static void ImplSetModifyImport(bool bModify) { hookName::m_bModifyImport = bModify; } \ static const std::string& ImplGetLibName() { return hookName::m_lib; } \ static const std::string& ImplGetImportFunctionName() { return hookName::m_importFunc; } \ static void ImplSetOriginalAddress(void* fn) { hookName::m_origFunction = fn; } \ static void* ImplGetOriginalAddress() { return hookName::m_origFunction; } \ static returnType On##hookName ( typedParams ); \ static void* ImplGetNewAddress() { return hookName::##hookName##FnHook; } \ static const std::string& ImplGetHookName() { return hookName::m_sHookName; } \ public: \ hookName() \ { \ InjectHookRef.AddHook((IHook*)this); \ hookName::m_lib = importLib; \ hookName::m_importFunc = importFunc; \ hookName::m_sHookName = #hookName; \ hookName::m_origFunction = NULL; \ hookName::m_bModifyImport = true; \ } \ virtual bool IsModifyImport() const { return hookName::ImplIsModifyImport(); } \ virtual void SetModifyImport(bool bModify) { hookName::ImplSetModifyImport(bModify); } \ virtual const std::string& GetHookName() const { return hookName::ImplGetHookName(); } \ virtual const std::string& GetLibName() const { return hookName::ImplGetLibName(); } \ virtual const std::string& GetImportFunctionName() const { return hookName::ImplGetImportFunctionName(); } \ virtual void* GetOriginalAddress() const { return hookName::ImplGetOriginalAddress(); } \ virtual void* GetNewAddress() const { return hookName::ImplGetNewAddress(); } \ virtual void SetOriginalAddress(void* fn) { hookName::m_origFunction = fn; } \ static func_type GetTypedOriginalAddress() { return reinterpret_cast(hookName::m_origFunction); } \ }; \ void* hookName::m_origFunction = NULL; \ bool hookName::m_bModifyImport = false; \ std::string hookName::m_lib; \ std::string hookName::m_importFunc; \ std::string hookName::m_sHookName; \ static hookName g##hookName##Inst; </code></pre> <p>Which in turn allowed me to do this:</p> <p><code><pre> CPPHOOK(gIH, "SimEngine.dll", "?AddEntity@Player@@UAEXPAVEntity@@@Z", PlayerAddEntity, void, void* ent, ent);</p> <p>/* Called when the engine calls Player::AddEntity(entity) */ void PlayerAddEntity::OnPlayerAddEntity(void *thisptr, void *ent) { unsigned int id = getPlayerID(thisptr);</p> <pre><code>gIH.GetLog()-&gt;Info("Player %d adding entity %s.", getPlayerID(thisptr), getEntityName(ent)); gPlayers[id] = thisptr; /*if( id == 2 &amp;&amp; gPlayers[1] &amp;&amp; gPlayers[2] ) EntitySetOwner::GetTypedOriginalAddress() (ent, gPlayers[1]);*/ //gEnts[ent] = Entity(ent, Vector3f()); PlayerAddEntity::GetTypedOriginalAddress() (thisptr, ent); </code></pre> <p>} </pre></code></p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1244684#1244684 2 Answer by tkopec for What is the worst real-world macros/pre-processor abuse you've ever come across? tkopec 2009-08-07T13:25:03Z 2009-08-07T13:25:03Z <pre><code>#define interface struct </code></pre> <p>in some of Optima++ headers (Optima++ is/was a Watcom/Powersoft IDE I had to work with).</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1250372#1250372 1 Answer by Adam Batkin for What is the worst real-world macros/pre-processor abuse you've ever come across? Adam Batkin 2009-08-09T01:47:59Z 2009-08-09T01:55:34Z <p>Anything using sendmail and its magic configuration syntax</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1307595#1307595 2 Answer by jeffamaphone for What is the worst real-world macros/pre-processor abuse you've ever come across? jeffamaphone 2009-08-20T17:11:14Z 2009-08-20T17:11:14Z <p>I'm adding another one that has started to annoy me over time:</p> <pre><code>#define ARRAYSIZE(x) (sizeof(x)/sizeof((x)[0])) </code></pre> <p>And that's if they get it right; I've seen versions with all possible permutations of parenthesis present or not. I've seen it defined twice in the same header file.</p> <p>Mainly my argument applies to Windows (though I assume other OS SDKs have something similar), where just about everyone seems to feel the need to define this macro in their project's header, and I don't understand why. </p> <p>WinNT.h (which is included by Windows.h) defines a very nice version that does some template voodoo to cause <em>compile time</em> errors if you pass a pointer type instead of an array. </p> <p>Of course it falls back to exactly what I wrote above if you are building a C program, but I would still not redefine something the SDK has by default for no reason.</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1442407#1442407 0 Answer by Michael Kohne for What is the worst real-world macros/pre-processor abuse you've ever come across? Michael Kohne 2009-09-18T03:05:30Z 2009-09-18T03:05:30Z <p>I'm not fond of the Boost Preprocessor stuff. I attempted once to figure out how to use it (we had Boost in the project anyway...), but as near as I could tell, using it would make my error messages SO unreadable that it wasn't worth it.</p> <p>I liked the idea of the equivalent of looping macros, but it was just too much.</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1442472#1442472 1 Answer by Reuben for What is the worst real-world macros/pre-processor abuse you've ever come across? Reuben 2009-09-18T03:36:17Z 2009-09-18T16:28:31Z <p>At the time it seemed like a good idea to "pass" a macro as an argument into another macro. (I just couldn't stand the thought of defining a list of values in multiple places.) The code here is contrived (and not very motivating), but gives you the idea:</p> <pre><code>#define ENUM_COLORS(CallbackMacro) \ CallbackMacro(RED) \ CallbackMacro(GREEN) \ CallbackMacro(BLUE) \ // ... #define DEFINE_COLOR_TYPE_CALLBACK(Color) \ Color, enum MyColorType { ENUM_COLORS(DEFINE_COLOR_TYPE_CALLBACK) }; void RegisterAllKnownColors(void) { #define REGISTER_COLOR_CALLBACK(Color) \ RegisterColor(Color, #Color); ENUM_COLORS(REGISTER_COLOR_CALLBACK) } void RegisterColor(MyColorType Color, char *ColorName) { // ... } </code></pre> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1442801#1442801 2 Answer by Motti for What is the worst real-world macros/pre-processor abuse you've ever come across? Motti 2009-09-18T06:00:29Z 2009-09-18T06:00:29Z <pre><code>#define unless(cond) if(!cond) #define until(cond) while(!cond) </code></pre> <p>Used:</p> <pre><code>unless( ptr == NULL) ptr-&gt;foo(); </code></pre> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1442864#1442864 3 Answer by Michael Foukarakis for What is the worst real-world macros/pre-processor abuse you've ever come across? Michael Foukarakis 2009-09-18T06:29:13Z 2009-09-18T06:29:13Z <pre><code>#define TRUE 0 // dumbass </code></pre> <p>The person who did this explained himself some years later - most (if not all) C library functions return 0 as an indication that everything went well. So, he wanted to be able to write code like:</p> <pre><code>if (memcpy(buffer, packet, BUFFER_SIZE) == TRUE) { ; // rape that packet } </code></pre> <p>Needless to say, nobody in our team (tester or developer) ever dared to glance at his code again.</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1444436#1444436 3 Answer by eduffy for What is the worst real-world macros/pre-processor abuse you've ever come across? eduffy 2009-09-18T13:05:16Z 2009-09-18T13:05:16Z <pre><code>#define FLASE FALSE </code></pre> <p>The programmer was a bad typist, and this was his most common mistake.</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1445656#1445656 3 Answer by rcoder for What is the worst real-world macros/pre-processor abuse you've ever come across? rcoder 2009-09-18T16:38:05Z 2009-09-18T16:38:05Z <p>A "technical manager" who had formerly been a coder introduced the following <em>wonderful</em> macros into our C++ project because he thought that checking for <code>NULL</code> values in DOM parsing routines was just too much work:</p> <pre><code>TRYSEGV CATCHSEGV </code></pre> <p>Under the covers, these used <code>setjmp</code>, <code>longjmp</code>, and a <em>signal handler</em> for <code>SIGSEGV</code> to emulate the ability to "catch" a segfault.</p> <p>Of course, nothing in the code reset the jump pointed once the code had exited the scope of the original <code>TRYSEGV</code> macro invocation, so <em>any</em> segfault in the code would return to the (now invalid) <code>jump_env</code> pointer.</p> <p>The code would immediately die there, but not before destroying the program stack and rendering debugging more or less pointless.</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1445680#1445680 0 Answer by Brock Woolf for What is the worst real-world macros/pre-processor abuse you've ever come across? Brock Woolf 2009-09-18T16:45:45Z 2009-09-18T16:52:10Z <pre><code>#undef near #undef far </code></pre> <p>When I was new to game programming I was writing a frustum for a camera class is a game that I wrote, I had really strange errors in my code.</p> <p>It turns out that Microsoft had some #defines for near and far in windows.h which caused my _near and _far variables to error on the lines that contained them. It was very difficult to track the problem down because (I was a newbie at the time) and they only existed on four lines in the whole project so i didn't realise right away.</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1466303#1466303 5 Answer by Nik Reiman for What is the worst real-world macros/pre-processor abuse you've ever come across? Nik Reiman 2009-09-23T14:21:35Z 2009-09-23T14:21:35Z <p>I once had to port a C application from unix to windows, the specific nature of which shall remain unnamed to protect the guilty. The guy who wrote it was a professor unaccustomed to writing production code, and had clearly come to C from some other language. It also happens that English wasn't his first language, though the in country he came from from the majority of people speak it quite well. </p> <p>His application made heavy use of the preprocessor to twist the C language into a format he could better understand. But the macros he used the most were defined in a header file named 'Thing.h' (seriously), which included the following:</p> <pre><code>#define I Any void_me #define thou Any void_thee #define iam(klas) klas me = (klas) void_me #define thouart(klas) klas thee = (klas) void_thee #define my me -&gt; #define thy thee -&gt; #define his him -&gt; #define our my methods -&gt; #define your thy methods -&gt; </code></pre> <p>...which he then used to write monstrosities like the following:</p> <pre><code>void Thing_setName (I, const char *name) { iam (Thing); if (name != my name) { Melder_free (my name); my name = Melder_wcsdup (name); } our nameChanged (me); } void Thing_overrideClass (I, void *klas) { iam (Thing); my methods = (Thing_Table)klas; if (! ((Thing_Table) klas) -&gt; destroy) ((Thing_Table) klas) -&gt; _initialize (klas); } </code></pre> <p>The entire project (~60,000 LOC) was written in a similar style -- marco hell, weird names, Olde-English jargon, etc. Fortunately we were able to throw the code out since I found an OSS library which performed the same algorithm dozens of times faster.</p> <p>(I've copied and edited this answer which I originally made <a href="http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/194124#194124">on this question</a>).</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1466409#1466409 0 Answer by Skizz for What is the worst real-world macros/pre-processor abuse you've ever come across? Skizz 2009-09-23T14:36:50Z 2009-09-23T14:36:50Z <p>It's not a C macro but...</p> <p>Many years ago I had the fun task of porting the original Transport Tycoon from the PC to the Mac. The PC version was written entirely in assembler so we had to go through the whole source code and port it to 'PC' C code first and then port that to the Mac. Most of the code was OK, even object orientated in places. However, the world rendering system was unbelievable. For anyone who's not played the game, the world can be viewed at one of three zoom levels. The code for this was something along the lines of:</p> <pre><code>macro DrawMacro &lt;list of arguments&gt; a couple of thousand lines of assembler with loads of conditionals based on the macro arguments DrawZoomLevel1: DrawMacro &lt;list of magic numbers&gt; DrawZoomLevel2: DrawMacro &lt;list of more magic numbers&gt; DrawZoomLevel3: DrawMacro &lt;list of even more magic numbers&gt; </code></pre> <p>We must have been using a slightly older version of MASM as the macro would crash the assembler when we tried to assemble it.</p> <p>Skizz</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1594078#1594078 0 Answer by Pierre Guilbert for What is the worst real-world macros/pre-processor abuse you've ever come across? Pierre Guilbert 2009-10-20T11:54:25Z 2009-10-20T12:18:56Z <p>I found it in libtidy,:</p> <pre><code> /* Internal symbols are prefixed to avoid clashes with other libraries */ #define TYDYAPPEND(str1,str2) str1##str2 #define TY_(str) TYDYAPPEND(prvTidy,str) TY_(DocParseStream)(bar,foo); </code></pre> <p>The problem is that visual studio 2005 and maybe other ide <code>go to definition</code> and <code>go to declaration</code> features only find the <code>#define TY_(...)</code> and not the desired <code>DocParseStream</code> declaration.</p> <p>Maybe it is safer this way.</p> <p>I think they should put a prefix for each function and not call a macro to do the job.. it's cluttering the code.. but maybe I am wrong about that. What do you think..?</p> <p>Ps: It seems that almost all the internal function const and others are prefixed using this.. My colleague just told me that it is usual.. wtf? Maybe I missed something.</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1594500#1594500 6 Answer by Thomas Padron-McCarthy for What is the worst real-world macros/pre-processor abuse you've ever come across? Thomas Padron-McCarthy 2009-10-20T13:08:09Z 2009-10-20T13:08:09Z <p>I did the following myself, and I think I learned something from it.</p> <p>In 1992 or so I wrote a small Lisp interpreter. It wasn't implemented in normal C, but in an interpreted C-like language. This C-like language used the standard C pre-processor, though.</p> <p>The Lisp interpreter of course contained the functions <strong>car</strong>, which is used in Lisp to return the first element in a list, and <strong>cdr</strong>, which returns the rest of the list. They were implemented like this:</p> <pre><code>LISPID car(LISPID id) { CHECK_CONS("car", 1, id); return cons_cars[id - CONS_OFFSET]; } /* car */ LISPID cdr(LISPID id) { CHECK_CONS("cdr", 1, id); return cons_cdrs[id - CONS_OFFSET]; } /* cdr */ </code></pre> <p>(Data were stored in arrays, since there were no structs. <strong>CONS_OFFSET</strong> is the constant 1000.)</p> <p><strong>car</strong> and <strong>cdr</strong> are used frequently in Lisp, and are short, and since function calls weren't very fast in the implementation language, I optimized my code by implementing those two Lisp functions as macros:</p> <pre><code>#define car(id) (CHECK_CONS("car", 1, (id)), cons_cars[(id) - CONS_OFFSET]) #define cdr(id) (CHECK_CONS("car", 1, (id)), cons_cdrs[(id) - CONS_OFFSET]) </code></pre> <p><strong>CHECK_CONS</strong> checks that its argument actually is a list, and since that one is also used frequently in the interpreter, and is short, I wrote that one too as a macro:</p> <pre><code>#define CHECK_CONS(fun, pos, arg) \ (!IS_CONS(arg) ? \ LISP_ERROR("Arg " + pos + " to " + fun + \ " must be a list: " + lispid2string(arg)) : 0) </code></pre> <p><strong>IS_CONS</strong> and <strong>LISP_ERROR</strong> were also used frequently, so I made them into macros too:</p> <pre><code>#define IS_CONS(id) \ ( intp(id) &amp;&amp; (id) &gt;= CONS_OFFSET \ &amp;&amp; ((id) - CONS_OFFSET) &lt; sizeof(cons_cars)) #define LISP_ERROR(str) (throw((str) + "\n")) </code></pre> <p>Seems reasonable?</p> <p>But then, why did the entire system crash on this line:</p> <pre><code>id2 = car(car(car(car((id1)))); </code></pre> <p>I worked a long time to find the problem, until I finally checked what that short line was expanded to by the pre-processor. It was expanded to a 31370-character line, which I have here split into lines (502 of them) for clarity:</p> <pre><code>id2 = ((!(intp( (((!(intp( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000]))) &amp;&amp; ( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000])) - 1000]))) &amp;&amp; ( (((!(intp( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000]))) &amp;&amp; ( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000])) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000]))) &amp;&amp; ( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000])) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000]))) &amp;&amp; ( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000])) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) </code></pre> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1613460#1613460 0 Answer by Obi for What is the worst real-world macros/pre-processor abuse you've ever come across? Obi 2009-10-23T13:31:57Z 2009-10-23T13:31:57Z <p>Coroutines (AKA Stackless threads) in C. :) It's Evil trickery.</p> <pre><code>#define crBegin static int state=0; switch(state) { case 0: #define crReturn(i,x) do { state=i; return x; case i:; } while (0) #define crFinish } int function(void) { static int i; crBegin; for (i = 0; i &lt; 10; i++) crReturn(1, i); crFinish; } int decompressor(void) { static int c, len; crBegin; while (1) { c = getchar(); if (c == EOF) break; if (c == 0xFF) { len = getchar(); c = getchar(); while (len--) crReturn(c); } else crReturn(c); } crReturn(EOF); crFinish; } void parser(int c) { crBegin; while (1) { /* first char already in c */ if (c == EOF) break; if (isalpha(c)) { do { add_to_token(c); crReturn( ); } while (isalpha(c)); got_token(WORD); } add_to_token(c); got_token(PUNCT); crReturn( ); } crFinish; } </code></pre> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1613540#1613540 0 Answer by WillW for What is the worst real-world macros/pre-processor abuse you've ever come across? WillW 2009-10-23T13:43:54Z 2009-10-23T13:43:54Z <pre><code>#define "CR_LF" '\r' </code></pre> <p>That confused the hell out of me for a while!</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1643723#1643723 0 Answer by vava for What is the worst real-world macros/pre-processor abuse you've ever come across? vava 2009-10-29T13:26:14Z 2009-10-29T13:26:14Z <pre><code>#define return if (std::random(1000) &lt; 2) throw std::exception(); else return </code></pre> <p>this is just so evil. It's random, which means it fires in different places all the time, it changes return statement, which usually have some code on it that could fail all by itself, it changes innocent looking keyword that you won't ever get suspicious over and it uses exception from std space so you won't try to search through your sources to find it's source. Just brilliant. </p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1793394#1793394 0 Answer by Arabcoder for What is the worst real-world macros/pre-processor abuse you've ever come across? Arabcoder 2009-11-24T22:32:38Z 2009-11-25T14:01:45Z <pre><code>#define begin { #define end } </code></pre> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1793471#1793471 0 Answer by Brian Postow for What is the worst real-world macros/pre-processor abuse you've ever come across? Brian Postow 2009-11-24T22:44:17Z 2009-11-24T22:44:17Z <p>The worst I've seen is in my current project where there are a whole lot of cases of:</p> <pre><code>#if PROGRAMA . . if(...) { . . . #else . . if(...) { . . . #endif } </code></pre> <p>Yeah, he closes 2 opens with a single close.</p>