Skip to content

Instantly share code, notes, and snippets.

@evanslai
Created January 23, 2018 01:18
Show Gist options
  • Save evanslai/71f0da439eb7a2eabf0b4651fd4da14f to your computer and use it in GitHub Desktop.
Save evanslai/71f0da439eb7a2eabf0b4651fd4da14f to your computer and use it in GitHub Desktop.
C: Make the predefined MACRO __FILE__ become short path
#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