3
votes
15answers
335 views
C - the most useful user-made C-macros (in GCC, also C99) ?
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]; \ …
0
votes
5answers
109 views
C Programming: Preprocessor, include files from macro
If I could find a way to do something similar to this, I could cut out hundreds of lines of code in my application, and dramatically increase maintainability. Anyone have any ideas …
1
vote
2answers
83 views
C Programming: Preprocessor, macros as tokens
Hi, I'm trying to do something that is conceptually similar to this, but can't seem to get it to work (error shown at end) any ideas?
#include <stdio.h>
int main( int argc …
0
votes
3answers
70 views
Convert string from __DATE__ into a time_t
I'm trying to convert the string produced from the __DATE__ macro into a time_t. I don't need a full-blown date/time parser, something that only handles the format of the __DATE__ …
0
votes
4answers
69 views
Check whether function is declared with C preprocessor?
Is it possible to tell the C preprocessor to check whether a function (not a macro) is declared? I tried the following, but it doesn't appear to work:
#include <stdio.h>
in …
0
votes
1answer
25 views
Testrun preprocessor statement
Is there a way to set a constant depending on whether unit tests are run?
The problem with the unit test framework is de way it deals with dependencies; it will copy files but it d …
0
votes
2answers
75 views
macros as arguments to preprocessor directives
Being faced with the question wether its possible to choose #includes in the preprocessor i immediately thought not possible.
.. Only to later find out that it is indeed possible a …
0
votes
2answers
50 views
Visual Studio 2008 Preprocessor wierdness
We have set-up a simple versioning system for our builds to ensure the built files always indicate whether they are Beta Debug or Beta Release builds
I moved the file version info …
2
votes
6answers
133 views
C++ throwing compilation error on sizeof() comparison in preprocessor #if
I have this which does not compile with the error "fatal error C1017: invalid integer constant expression" from visual studio. How would I do this?
template <class B>
A *Cre …
0
votes
4answers
78 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?
0
votes
5answers
84 views
Removing macro in legacy code
I have a lot of legacy code using macro of the form:
#define FXX(x) pField->GetValue(x)
The macro forces variable pField be in the scope:
.....
FIELD *pField = ....
.....
in …
2
votes
7answers
199 views
How does this C code work?
what is a##b & #a?
#define f(a,b) a##b
#define g(a) #a
#define h(a) g(a)
main()
{
printf("%s\n",h(f(1,2))); //how should I interpret this?? [line 1]
…
50
votes
58answers
6k views
What is the worst real-world macros/pre-processor abuse you’ve ever come across?
What is the worst real-world macros/pre-processor abuse you've ever come across (please no contrived IOCCC answers *haha*)?
Please add a short snippet or story if it is really ent …
2
votes
2answers
100 views
[C/C++] somehow register my classes in a list
Hi,
I would like to be able to register my classes within a std::map or a vector, don't think about duplicates and such for now.
but I don't want to register it within the class c …
0
votes
1answer
52 views
Combining wide string literal with string macro
I have a macro for a character string as follows:
#define APPNAME "MyApp"
Now I want to construct a wide string using this macro by doing something like:
const wchar_t *AppProg …
