Tagged Questions
4
votes
3answers
1k views
C Macro Token Concatenation involving a variable - is it possible?
I'm trying to define a macro to generate a token name, containing a variable.
Basically, what I'm trying is this:
#define GLUER(x,y,z) x##y##z
#define PxDIR(x) GLUER(P,x,DIR)
int main() {
int ...
0
votes
2answers
118 views
Style: objective c and token concatenation
This is a style question:
Because Apple reserves the "_" privatization for its keywords, I was thinking of something along the lines of the following:
#import <Cocoa/Cocoa.h>
#define _(name) ...
32
votes
2answers
12k views
Creating C macro with ## and __LINE__ (token concatenation with positioning macro)
I want to create a C macro that creates a function with a name based
on the line number.
I thought I could do something like (the real function would have statements within the braces):
#define ...
37
votes
2answers
15k views
C preprocessor and concatenation
I am trying to write a code, where name of functions are dependent on the value of a certain macro variable. To be specific, I am trying to write a macro like this:
#define VARIABLE 3
#define ...