1
vote
3answers
130 views
C macro processing
Hy.
I'm thinking about best way to write C define processor that would be able to handle macros.Unfortunately nothing intelligent comes to my mind.
It should behave exactly like on …
0
votes
2answers
155 views
adding #ifndef #define #endif breaks the compile
I added a #ifndef to a file of my project and the compile fails in this case. As soon as I remove it or put any other name in the define it compiles fine. What could be the prob …
0
votes
4answers
79 views
See what the preprocessor is doing
Is there anyway to see what you code looks like after the preprocessor has done all the substitutions?
2
votes
1answer
179 views
Why are #ifndef and #define used in c++ header files
I have been seeing code like this usually in the start of header files
#ifndef HEADERFILE_H
#define HEADERFILE_H
and at the end of the file is
#endif
I am confused about the …
1
vote
1answer
63 views
How can I keep doxygen from documenting #defines in a C file?
I have #define values in headers that I certainly want Doxygen to document but I have others in C files that I treat as static constants and I don't want Doxygen to document them. …
2
votes
9answers
310 views
C - alternative to #ifdef
I'm trying to streamline large chunk of legacy C code in which, even today, before doing the build guy who maintains it takes a source file(s) and manually modifies the following s …
0
votes
6answers
151 views
What does this define statement mean?
I have this code to draw an ellipse in the screen but i dont understand what does it means the long define statement, and i only want to know how to write the same code without all …
1
vote
8answers
135 views
Select a function at compile time
Hi,
in my C project I have five different function (with the same name) which implement one algorithm but in different ways. At compiler time I need to select only one of these fun …
1
vote
4answers
100 views
c define 64bit on 32bit
If I do:
#define TIMEFIXCONST 11644473600
on a 32bit machine, will it overflow or will it be stored as a long long and still work properly? Should I just define a global unsigne …
5
votes
6answers
259 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 …
3
votes
6answers
225 views
When to use function-like macros in C
Hi,
I was reading some code written in C this evening, and at the top of
the file was the function-like macro HASH:
#define HASH(fp) (((unsigned long)fp)%NHASH)
This left me wo …
1
vote
4answers
247 views
C macro : turn a number into a string
I have a table that defines symbols appearance on a 5x7 dot display. Something like:
extern UINT8 symbols[][5] = {
{0x0,0x0,0x0,0x0,0x0},
{0x0,0x0,0x5F,0x0,0x0},
{0x …
-3
votes
1answer
107 views
problem with #define and templates? [closed]
I remember there was a problem that happens often enough to cause people trouble. I cant remember what it is. It was related to #define and templates. I cant remember if it was a t …
3
votes
3answers
122 views
What C preprocessor conditional should I use for OS X specific code?
What C preprocessor conditional should I use for OS X specific code? I need to include a specific library if I am compiling for OS X or a different header if I am compiling for Lin …
0
votes
4answers
89 views
Highlighting #defined value in VIM
Hi all,
I have XYZ highlighted in the header file where I have defined XYZ. However at the point of where it is used, XYZ is not highlighted. How would I fix this ?
I have attach …
