How can I write a program in C which removes all the defined values defined by the user using #define name value?
Throughout the program should we replace the name, value?
Does anyone have any examples of this?
|
1
|
How can I write a program in C which removes all the defined values defined by the user using #define name value? Throughout the program should we replace the name, value? Does anyone have any examples of this? |
||||||||||
|
|
|
Most compilers will show you the output after the prerocessing phases. For example, with gcc, you may use the -E flag. |
||
|
|
|
|
That can't be done. You have to know the name of the macro you wish to undefine. You can extract all these through some clever parsing but you can not simply say undef ALL unless there's some way to tell your compiler to do exactly that. I would recommend you look up any compiler specific documentation you can. |
|||
|
|
|
|
To remove #defined values individually, you can use #undef:
I don't think there's a way to remove all #defined names, unless it's compiler-specific |
||
|
|
|
|
if you need simply strip c sources from "#define" - you can use sed or awk |
||
|
|
It looks like you need to implement your own primitive preprocessor, but nobody has showed you how lexical parsers work, or you would not be asking :) With all of the syntatic goop that goes into parsing C, surely, preprocessor tokens are the easiest to extract. I don't think someone could cram 'parsers for the parser challenged' into a single SO answer .. but a few of these crazy folks may try :) |
||
|
|
|
|
If your goal is to remove all the From there, you should be able to figure out the rest. |
||
|
|