From 8c3ba33ced08b211db0cd5f81675bdf62f55acc7 Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Thu, 20 Jul 2023 23:47:33 +0200 Subject: Move header files to subdirectory Since slweb is meant as a library, it is advisable to keep public header files under their own directory in order to avoid name clashing i.e., #include "something.h" Now becomes: #include "slweb/something.h" --- include/slweb/wildcard_cmp.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 include/slweb/wildcard_cmp.h (limited to 'include/slweb/wildcard_cmp.h') diff --git a/include/slweb/wildcard_cmp.h b/include/slweb/wildcard_cmp.h new file mode 100644 index 0000000..fa09913 --- /dev/null +++ b/include/slweb/wildcard_cmp.h @@ -0,0 +1,8 @@ +#ifndef WILDCARD_CMP_H +#define WILDCARD_CMP_H + +#include + +int wildcard_cmp(const char *s, const char *p, bool casecmp); + +#endif /* WILDCARD_CMP_H */ -- cgit v1.2.3