The c-preprocessor tag has no wiki summary.
12
votes
3answers
167 views
Old C compiler chokes on #ifndef #define
I am trying to port some relatively modern C code to an older compiler.
This compiler (DICE), it seems, chokes on the first header file and the first occurrence of this idiom:
#ifndef SOMETHING
...
9
votes
5answers
254 views
C preprocessor question
I'm learning C, but I do not understand this:
#define square(x) x*x
a = square(2+3) //a = 11
When this is run, why does a end up being 11?
6
votes
3answers
224 views
Is there a way to escape a C preprocessor directive?
What I am trying to do is have the C preprocessor output #ifdef, #else, and #endif directives. That is, I would like to somehow "escape" a directive so that the output of the preprocessor includes the ...
5
votes
5answers
133 views
Conditional compilation depending on function argument?
I searched far and wide and information on the net seems to suggest that conditional compilation using the preprocessor works exclusively on environment variables.
Basically, I would like to have an ...
5
votes
4answers
206 views
Implementing a C preprocessor
Much has been written over the years on implementing parsers, but the C preprocessor is not quite the same as any of the stages of a typical parser, and implementation thereof doubtless has its share ...
5
votes
2answers
161 views
Preprocessor facility __COUNTER__ in Visual C++
I need to generate a series of sequential numbers throughout my code at compile time. I tried "__COUNTER__" in a way like this:
void test1()
{
printf("test1(): Counter = %d\n", __COUNTER__);
}
void ...
5
votes
4answers
241 views
Where can I learn about #ifdef?
I see this used often to make modules compatible with GHC and Hugs, but google is not helping me learn more about it.
What can I put inside the conditional? Can I make parts of a module conditional ...
4
votes
2answers
69 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 ...
4
votes
4answers
170 views
Compile-time assert on datatype sizes
I would like to perform a compile-time check on datatype sizes in a C/C++ project, and error on unexpected mismatches. Simple
#if sizeof foo_t != sizeof bar_t
does not compile - claims that sizeof ...
4
votes
5answers
151 views
Can a C macro definition refer to other macros?
My knowledge of programming is pretty basic, so I apologize if this question is poorly worded.
What I'm trying to figure out is if something such as this (written in C):
#define FOO 15
#define BAR ...
4
votes
4answers
177 views
How do I stringify macros that are the results of operations on macros?
Here's a program that illustrates my problem:
#include <stdio.h>
#define NUMERATOR 8
#define DENOMINATOR 2
#define QUOTIENT (NUMERATOR / DENOMINATOR)
#define ZSTR(x) XSTR(#x)
#define YSTR(x) ...
3
votes
11answers
191 views
Speed up C program without using conditional compilation
we are working on a model checking tool which executes certain search routines several billion times. We have different search routines which are currently selected using preprocessor directives. This ...
3
votes
2answers
69 views
What do these strange macro definitions mean (and are they even correct?)
I am working on some legacy C code and have come accross two strange macro definitions. They don't look right, and are also responsible for some compiler warnings (warning: left-hand operand of comma ...
3
votes
3answers
121 views
Macro evaluation order [closed]
Possible Duplicate:
# and ## in macros
why the output of second printf is f(1,2) what is the order in which macro is evaluated?
#include <stdio.h>
#define f(a,b) a##b
#define g(a) #a
...
3
votes
1answer
83 views
Can __FILE__ and __LINE__ be made linkable when printed to Qt Creator's debug console?
Header:
#define TRACE_ERROR(s) \
{
...
char TraceBuffer[512];
sprintf(TraceBuffer, "%s\t(%s:%d)", s, __FILE__, __LINE__);
DebugErrTrace(TraceBuffer);
...
}
...
3
votes
1answer
154 views
How to Doxygen comment generated code
I'm using the C preprocessor to generate elements in an enum. Is there a way to write doxygen comments for the generated elements? I can't just run it through the preprocessor before doxygen since ...
3
votes
8answers
99 views
What use cases necessitate #define without a token-string?
I have encountered the #define pre-processor directive before while learning C, and then also encountered it in some code I read. But apart from using it to definite substitutions for constants and to ...
3
votes
2answers
132 views
Working of the C Preprocessor
How does the following piece of code work, in other words what is the algorithm of the C preprocessor. Does this work on all compilers
#include <stdio.h>
#define b a
#define a 170
int main() ...
3
votes
3answers
250 views
stringizing #a in define, why is it bad
#include <stdio.h>
#define print_int(a) printf("%s : %d\n",#a,(a))
int main(void) {
int y = 10;
print_int(y);
return 0;
}
i am taking a class and have been asked to explain why ...
3
votes
1answer
300 views
_Pragma preprocessor operator in Visual C++
Is there something like the ANSI C operator _Pragma in Visual C++?
For example, I'm trying to define the following macro:
#ifdef _OPENMP
#define PRAGMA_IF_OPENMP(x) _Pragma (#x)
#else // #ifdef ...
2
votes
2answers
52 views
c function-like macro with argument list but without replacement list?
A co-worker asked me to explain a bit of C code in memcached. I am at the point where I admit I do not understand it either.
It has to do with C function-like macro definitions with parameters that ...
2
votes
3answers
91 views
Run preprocessor only but with only for certain statements
I have a number of debug statements defined in a program, and I want to be able to make a copy of the source without these statements.
In order to do this I first looked at GCC's -E command line ...
2
votes
1answer
99 views
How to write preprocessor definition that skips lines of code in C++?
Let's say this is a preprocessor definition before function f():
#define write std::cout << "test";
write
void f()
{
//...
}
and this is result of that macro:
std::cout << "test"
...
2
votes
3answers
50 views
Can preprocessor directive #include be disabled/excluded?
For example: If I have two .h files
process1.h and process2.h
and they contain two function with different output variables.
process1.h:
function(int var)
{
return 2*var;
}
process2.h:
...
2
votes
2answers
112 views
Use typedef within struct for naming and indexing text commands
I am working with a simple command line application that takes in ASCI text and interprets it as a command.
I have attempted to minimize the redundancy in this application via the example at ...
2
votes
2answers
117 views
Strip Linux kernel sources according to .config
Is there any efficient way (maybe by abusing the gcc preprocessor?) to get a set of stripped kernel sources where all code not needed according to .config is left out?
2
votes
5answers
135 views
Preprocessor directive to create file names
I have to open files one by one for reading in C/C++. The name of the files are in0, in1, in2, in3.....
I tried to use preprocessor directive to create file names.
i want something like.
for(int ...
2
votes
1answer
151 views
Converting string macros/constants to wide characters/Unicode
I have a Unicode Win32 application that uses 3rd party libraries, some of which provide constants for their version information as #defined (narrow) strings. For instance, libpng has the following:
...
2
votes
2answers
83 views
C/C++ Compiler listing what's defined
This question : Is there a way to tell whether code is now being compiled as part of a PCH? lead me to thinking about this.
Is there a way, in perhaps only certain compilers, of getting a C/C++ ...
2
votes
1answer
138 views
c/c++ (VS2008) enclose macro param in quotes
For a load of function calls in a C app that needs some degree of debugging I wanted to add a macro to ease the typing that I had to do.
right now I am calling a function like this:
...
2
votes
2answers
383 views
Test for empty macro definition
I've got a set of debug macros in tracing.hh. Whether it generates code and output is controlled by a macro flag in the real source code:
// File: foo.cc
#define TRACING 0
#include "tracing.hh"
// ...
2
votes
3answers
187 views
Obtaining the include paths cpp searches
How do I obtain the system include search paths of the C preprocessor? This is for a script that parses arbitrary source files and needs to know the full pathnames of the headers they #include. Let's ...
1
vote
2answers
104 views
C Macro to protect definitions
Is there a way to protect a macro definition? To be more specific consider the following:
#define macro1 x
// code segment 1 involving macro1 goes here
// code segment 2 involving macro1 goes here
...
1
vote
3answers
86 views
Why NDEBUG instead of RELEASE?
The standard C assert macro is disabled when the macro NDEBUG is defined, meaning "Not debug". This leads to really awful double negative cases like #ifndef NDEBUG //DebuggingCode #endif. It seems ...
1
vote
3answers
41 views
Is there a preprocessor macro that expands to the current selector? [closed]
Possible Duplicate:
Dynamically retrieving current method's name
Obj-C introspection: How can a method reference it's own selector?
This applies to Objective-C, is there a ...
1
vote
2answers
45 views
Getting a List of #define Symbols in VC++
Is it possible to obtain a list of preprocessor #define'd symbols in VC++? I know GCC has similar options to dump all effective #define symbols for the supplied .cpp/.h source files, but I am not ...
1
vote
1answer
79 views
Define a pre-processor variable for all the files in make
I have a number of .c and .h files with some parts of the code disabled by putting the code block in pre-processor directives e.g.
#ifdef FOOBAR
// some code that can be compiled if needed by ...
1
vote
1answer
46 views
Checking type of a variable by preprocessor directive
Is there a way to check the type of variable by preprocessor ?
Actually I want to do something like this :
//test.c
int main()
{
TYPE a=6;
#if TYPE==int
printf("%d\n",a);
#elif TYPE==float
...
1
vote
3answers
94 views
Compile time variable sized string literal in C
What should be done for DD ?
if
#define HEADING_TITLE_PROJECT_NAME "<= Version Maintenance Based On Compiled DateTime =>"
#define SIZE_OF_HEADER_FOR_DECORATION_PURPOSE ...
1
vote
3answers
169 views
String literals in Define preprocessor directive
I would like to the #define directive inside of a quotation. Here's the problem:
There is a built-in function in the embedded platform that I'm using that takes literal assembly code as a string. I ...
1
vote
2answers
142 views
How to convert #defined string literal to a wide string literal? [closed]
Possible Duplicate:
How to convert concatenated strings to wide-char with the C preprocessor?
I have a string literal defined using a #define:
#define B "1234\0"
How do I use this ...
1
vote
1answer
280 views
Nested boost (preprocessor) sequence
Why can't i call BOOST_PP_SEQ_FOR_EACH from inside a macro like this:
#define MAP_KEY_TYPES (int)(double)(std::string)
#define MAP_VAL_TYPES (int)(double)(std::string)(std::vector<int>)
...
1
vote
1answer
129 views
Macro with arguments used in a return statement
I have confusion on following c code
#define MACRO (xx) \
foo(xx)
...
#ifdef A
return MACRO(a);
#endif
...
The source can not compile. But when I change definition to
#define MACRO \
foo(a)
...
0
votes
1answer
73 views
Swapping values of macros
This may seem silly but I seem to have forgotten the order of replacement of macros. Can someone help me figure out how to correctly swap the values of two macros? Consider the following:
#include ...
0
votes
1answer
26 views
ANTLR grammar for C pre-processor
I download a c preprocessor grammar on the antlr website.But it has an error and I have no idea about how to correct it.
macroExpansion
: id=IDENTIFIER WS? LPAREN WS? RPAREN -> ^(EXPAND ...
0
votes
1answer
27 views
Checking if it is equal, Normal int and #define macro. but it doesn't work
I have an iVar named,
int DATA_IN_TRANSIT;
and I have defined several macros, e.g.
#define PLACES 0;
When I do something like the following,
if(DATA_IN_TRANSIT == PLACES)
{
NSLog(@"Make LLVM ...
0
votes
3answers
53 views
What is __FUNCT__ for?
I was looking at some PETSc example code, and I came across this snippet:
#undef __FUNCT__
#define __FUNCT__ "main"
right before main begins.
Is setting __FUNCT__ or something like it before ...
0
votes
2answers
75 views
Is it possible using macros to process defines contents?
I am currently working with JNI (Java Native Interface) to send data between Java and C++. After implementing a little of code I realized the code for each method was always similar. An example could ...
0
votes
3answers
94 views
How to return a string from a MACRO function in C?
I want to create a string based on the value passed as argument to the MACRO FUNCTION.
Something Like:
#define ABC(x,y) return "anystr_x_y.tar.bz2"
main()
{
a = ABC(2,3);
}
So Finally, It should ...
0
votes
1answer
13 views
Error specifying Include directory in C preprocessor
Using OSX and cpp I'm trying to use CPP to do prepocessing on some text files. I am including an include statement in my files:
#include "my_include.tmpl"
Which works fine when use:
cpp -P ...