diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-07-20 23:47:33 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-07-21 01:28:38 +0200 |
| commit | 8c3ba33ced08b211db0cd5f81675bdf62f55acc7 (patch) | |
| tree | 928ccf6a025db57c3a038a56a920735dccd286ff /wildcard_cmp.c | |
| parent | 4dd531b9ed1923837da32d69fa1933ec9083f8db (diff) | |
| download | libweb-8c3ba33ced08b211db0cd5f81675bdf62f55acc7.tar.gz | |
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"
Diffstat (limited to 'wildcard_cmp.c')
| -rw-r--r-- | wildcard_cmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wildcard_cmp.c b/wildcard_cmp.c index fe0b3e1..1fcd451 100644 --- a/wildcard_cmp.c +++ b/wildcard_cmp.c @@ -1,4 +1,4 @@ -#include "wildcard_cmp.h" +#include "slweb/wildcard_cmp.h" #include <stdbool.h> #include <stddef.h> #include <string.h> |
