Does the "C" standard support something similar to __func__ for the function arguments' names?
|
|
|||||||
|
|
|
if you want a quick and dirty solution for this make pre-processor macros like this...
... and use it for your function headers and footers like this (tested with VS 2008):
This should work exactly how you want, but it is ugly. |
||
|
|
|
No, the C99 standard has the following:
appeared, where function-name is the name of the lexically-enclosing function.63) gcc adds some extensions, as I imagine other compilers do. |
||
|
|
|
|
Check out this SO question. |
||
|
|
