diff options
author | nyorain <nyorain@gmail.com> | 2017-06-19 21:22:42 +0200 |
---|---|---|
committer | nyorain <nyorain@gmail.com> | 2017-06-19 21:22:42 +0200 |
commit | e65ca967f9f025748ce0710a09450ce05c5a36dd (patch) | |
tree | 79a78aadee4de5e16f9e4d67510463e628a95909 /common/log.c | |
parent | 10526de444b58ab4959d086538845303a06acfc1 (diff) | |
parent | 41b5294013cdf054e9dd49ef83ca6fee74f769a4 (diff) |
Merge branch 'master' into wayland-backend
Diffstat (limited to 'common/log.c')
-rw-r--r-- | common/log.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/common/log.c b/common/log.c index af07334a..90eedf4c 100644 --- a/common/log.c +++ b/common/log.c @@ -58,3 +58,20 @@ void _wlr_log(log_importance_t verbosity, const char *fmt, ...) { log_callback(verbosity, fmt, args); va_end(args); } + +// strips the path prefix from filepath +// will try to strip WLR_SRC_DIR as well as a relative src dir +// e.g. '/src/build/wlroots/backend/wayland/backend.c' and +// '../backend/wayland/backend.c' will both be stripped to +// 'backend/wayland/backend.c' +const char *_strip_path(const char *filepath) { + static int srclen = strlen(WLR_SRC_DIR) + 1; + if(*filepath == '.') { + while(*filepath == '.' || *filepath == '/') { + ++filepath; + } + } else { + filepath += srclen; + } + return filepath; +} |