Created
January 23, 2018 01:18
-
-
Save evanslai/71f0da439eb7a2eabf0b4651fd4da14f to your computer and use it in GitHub Desktop.
C: Make the predefined MACRO __FILE__ become short path
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <string.h> | |
#define __FILENAME__ (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment