WEBINAR:
On-Demand
Application Security Testing: An Integral Part of DevOps

bject reflection libraries, debugging tools, and code analyzers often need to access functions' names at runtime. Until not long ago, the only portable way to accomplish this was to manually embed a hard-coded string with the function's name inside the function's body. Needless to say, this technique is very tedious and bug-prone. This article demonstrates how to use a new C99 facility to obtain a function's name at runtime.

How can you access the name of a currently executing function programmatically?

Use the __FUNCTION__ facility and its related macros.