diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-05-12 23:46:22 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-05-12 23:46:22 -0400 |
commit | 89511934b805999e0c12071750c52c1c45d35536 (patch) | |
tree | cddfae1f628181b67a6d1a965e6c7c1239f81aeb /tests/test_no_sep_ending.c | |
parent | 054508b5edeaef602ee4251bb3828387cb26f582 (diff) | |
download | cleanpath-89511934b805999e0c12071750c52c1c45d35536.tar.gz |
Proper namespace for the header file. Bump version.
Diffstat (limited to 'tests/test_no_sep_ending.c')
-rw-r--r-- | tests/test_no_sep_ending.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_no_sep_ending.c b/tests/test_no_sep_ending.c index 6b89c2b..2f86270 100644 --- a/tests/test_no_sep_ending.c +++ b/tests/test_no_sep_ending.c @@ -1,4 +1,4 @@ -#include "cleanpath.h" +#include "cleanpath/cleanpath.h" #include "framework.h" int main() { @@ -16,4 +16,4 @@ int main() { len = strlen(result); puts(result); myassert(len && *(result + (len - 1)) != TEST_SEP[0], "Result ends with a separator:\n'%s'", result); -}
\ No newline at end of file +} |