2
votes
3answers
56 views

Looping construct in a C99 macro

I want to generate an array initializer with arbitrary logic that unfortunately requires some looping. #define RANDOM_ARRAY(n) \ ... double array[] = RANDOM_ARRAY(10); Suppose the code above ...
3
votes
2answers
95 views

C preprocessor using the closing bracket of a parent macro

I have this code which works: #include <stdio.h> #define A(x) x B #define B(x) C(x, #define C(x,y) y x) int main( void ) { printf( A("1") ("2") "3" ); } It prints 132 (the point of the A ...
1
vote
2answers
94 views

Can anybody please explain the behavour of C preprocessor in following examples?

I am implementing a C macro preprocessor (C99)... I am surprised by the following behaviour.... Ex1: #define PASTE(x) X_##x #define EXPAND(x) PASTE(x) #define TABSIZE 1024 #define BUFSIZE TABSIZE ...
0
votes
1answer
114 views

Problems with Swenson's Timsort implementation while sorting structs

I found Swenson's C implementation of Timsort: https://github.com/swenson/sort mentioned in one of the older SO questions. I encountered two problems: 1)To use it I need to define SORT_CMP macro ...
2
votes
2answers
1k views

Cleaning up C/C++ code reveals problems with variadic macros

We're doing some code cleanup, fixing signed/unsigned comparisons, running static analysis, etc, on the code base of C, C++, and Java. One of the warnings we're getting is warning: ISO C does not ...
3
votes
3answers
216 views

Variable no of argument in C Macro

I am writing some hardware specific code, where I want to use C Macros, the macro definition would be something like this:- #define VALIDATE_RESOURCE_AND_ALLOCATE(MODE,RESOURCE1) ...
5
votes
2answers
1k views

How do I have a comma inside braces inside a macro argument when parentheses cause a syntax error?

I've defined a few macros that make it simpler to define an array of structures, but I can't find a way to use them without generating errors. Here are the macros (and a few example structures to ...
19
votes
2answers
18k views

Implicit declaration of function - C99

I am currently using Xcode 4, and in my .pch file I have this macro: #define localize(s) NSLocalizedString((s), nil). When I try to use this macro in some .m file, I receive this warning: Implicit ...
19
votes
6answers
7k views

Standard alternative to GCC's ##__VA_ARGS__ trick?

There is a well-known problem with empty args for variadic macros in C99. example: #define FOO(...) printf(__VA_ARGS__) #define BAR(fmt, ...) printf(fmt, __VA_ARGS__) FOO("this works fine"); ...
0
votes
3answers
696 views

Simulater/Generated switch statement range in c

Is there a hack to support range case in a c(99?) or objective C switch statement ? I know this is not supported to write something like this: switch(x) case 1: case 2..10: case 11: But I ...
10
votes
2answers
621 views

During C macro expansion, is there a special case for macros that would expand to “/*”?

Here's a relevant example. It's obviously not valid C, but I'm just dealing with the preprocessor here, so the code doesn't actually have to compile. #define IDENTITY(x) x #define PREPEND_ASTERISK(x) ...
2
votes
2answers
2k views

Can I define variadic C preprocessor macros with __VA_ARGS in the middle instead of the end?

GCC complains if i do this: #define M(obj,met, ..., contents) obj##_##met(const void * self, __VA_ARGS__) { \ contents \ } Giving me these 2 reasons: error: missing ')' in macro parameter ...
5
votes
3answers
997 views

Token pasting in C

After reading about VA_NARG I tried to implement function overloading depending on number of arguments in C using macros. Now the problem is: void hello1(char *s) { ... } void hello2(char *s, char ...
5
votes
1answer
1k views

Variadic macros with 0 arguments in C99

I have some debugging code that looks like the following: #define STRINGIFY(x) #x #define TOSTRING(x) STRINGIFY(x) #define AT __FILE__ ":" TOSTRING(__LINE__) void __my_error(const char*loc, const ...
3
votes
2answers
358 views

C99 Macro to build a quoted string literal after evaluation

I'm developing an embedded application in C99, and the project contains some integer constants defined like: #define LEVEL1 0x0000 #define LEVEL2 (LEVEL1 + 1) It has since become useful to ...
14
votes
2answers
2k views

Is there a #define for C99?

I want to do something in C99 one way, otherwise to perform it another way. What is the #define to check for? #ifdef C99 ... #else ... #endif
10
votes
7answers
5k views

Is it possible to iterate over arguments in variadic macros?

I was wondering if it is possible to iterate over arguments passed to a variadic macro in C99 or using any GCC extensions ? For e.g. is it possible to write a generic macro that takes a structure and ...
11
votes
18answers
4k views

C - the most useful user-made C-macros (in GCC, also C99)? [closed]

What C-macros is in your opinion is the most useful? I have found the following one, which I use to do vector arithmetics in C: #define v3_op_v3(x, op, y, z) {z[0]=x[0] op y[0]; \ ...
17
votes
6answers
4k views

Does the C preprocessor strip comments or expand macros first?

Consider this (horrible, terrible, no good, very bad) code structure: #define foo(x) // commented out debugging code // Misformatted to not obscure the point if (a) foo(a); bar(a); I've seen two ...