What do I do with this switch-case statement in C?
#if defined MY_CONST && define RUN_TEST
case TX_ERROR:
//code here
break;
case RX_ERROR:
//other code here
break;
#endif
I'm coding in an existing project, and I see the above lines in an included header file (in the file I'm working on). No mention of a "switch" anywhere else in the header file!
I've never seen this before! How can these be case switches without the switching? Since this must be possible, how can I use these cases in a switch statement in my main file?
Sorry if this is a n00b question, I'm fairly new to C and even newer to compiler directives...
Thanks!
EDIT: I can't post the actual file (code base under licence?), but here's a stripped version:
#if defined _CONFIG
#define MY_CONST
#define MY_INIT
#define RUN_TEST
static void fnInit(void);
static void fnGo(void);
#endif
#if defined MY_CONST && define RUN_TEST
case TX_ERROR:
//code here
break;
case RX_ERROR:
//other code here
break;
#endif
#if defined MY_INIT && defined MY_CONST
static void fnInit(void)
{
//code
}
static void fnGo(void)
{
//code
}
#endif
#included from within aswitch. – K-ballo Oct 26 '11 at 0:04#ifdefsin the header too, one of them having two functions defined inside! Having the#includein aswitchmakes sense, but then how would it handle the functions?? – RaytheonLiszt Oct 26 '11 at 0:13