vote up 0 vote down star
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?

flag
not exactly sure what you're trying to do. Is this in a program that is running? a program that modifies other source code? please clarify – cobbal Mar 6 at 5:50
Reading a lot between the lines, perhaps the request is for code that sees '#define A 80' and then continues, finds an instance of 80, and changes it to A. It would certainly help to have an illustration of what's wanted. – Jonathan Leffler Mar 6 at 6:00
You are dealing with c source but to fix that source use a higher level langauge. Do you not understand the compilation process and how defines are not really part of the compiled binary? – Ctrl Alt D-1337 Mar 6 at 6:20
They asked a similar question a few weeks ago: stackoverflow.com/questions/574362/… – Chris Young Mar 6 at 6:21
@Chris, thanks ... re-tagging as homework – Tim Post Mar 6 at 9:25

6 Answers

vote up 5 vote down

Most compilers will show you the output after the prerocessing phases. For example, with gcc, you may use the -E flag.

link|flag
vote up 1 vote down

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.

link|flag
vote up 2 vote down

To remove #defined values individually, you can use #undef:

#define A_CONSTANT 3.14
#undef A_CONSTANT
// A_CONSTANT is no longer defined

I don't think there's a way to remove all #defined names, unless it's compiler-specific

link|flag
vote up 1 vote down

if you need simply strip c sources from "#define" - you can use sed or awk

link|flag
You'd also have to strip the #undef's too or else your compiler may bomb out about undeffing something that's not defined. – dreamlax Mar 6 at 9:41
Well, its likely going to bomb out anyway, i.e. #define VERSION "1.0.2" ... (later, in main()) printf("%s\n", VERSION); – Tim Post Mar 6 at 9:44
vote up 1 vote down

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 :)

link|flag
vote up 0 vote down

If your goal is to remove all the #define directives from the code, as opposed to undefining them later or something, this can be done with a simple regular expression find-and-replace. As this is homework, I imagine I shouldn't be showing you exactly how to do it, but if I tell you that /\nsometext[^\n]*/ should find any lines starting with "sometext". This may be slightly different depending on which specific brand of regex syntax you choose to use, but this'll work in most text editors with regular expression support that I've used, and I think it'll work with sed too if you provide the -E switch - it turns on extended regexes.

From there, you should be able to figure out the rest.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.