diff options
author | dm1try <me@dmitry.it> | 2020-05-03 23:46:55 +0300 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2020-12-01 10:50:38 +0100 |
commit | 13b88573005d84cc0ebcd7e7bf4dd488673919d3 (patch) | |
tree | 0ac5a5e231ecbb45fb15817f5dbec6296a092669 /src/nvim/path.c | |
parent | 70d0bee7655d70e4417143e45ec7b0cf3f92d9d3 (diff) | |
download | rneovim-13b88573005d84cc0ebcd7e7bf4dd488673919d3.tar.gz rneovim-13b88573005d84cc0ebcd7e7bf4dd488673919d3.tar.bz2 rneovim-13b88573005d84cc0ebcd7e7bf4dd488673919d3.zip |
path: add helper for checking a file extension
Diffstat (limited to 'src/nvim/path.c')
-rw-r--r-- | src/nvim/path.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/nvim/path.c b/src/nvim/path.c index f52fbbd5c8..2de7e00ddb 100644 --- a/src/nvim/path.c +++ b/src/nvim/path.c @@ -1704,6 +1704,13 @@ int path_with_url(const char *fname) return path_is_url(p); } +bool path_with_extension(const char *path, const char *extension) +{ + const char *last_dot = strrchr(path, '.'); + if (!last_dot) { return false; } + return strcmp(last_dot + 1, extension) == 0; +} + /* * Return TRUE if "name" is a full (absolute) path name or URL. */ |