diff --git a/src/uri.c b/src/uri.c new file mode 100644 index 0000000..97d08a2 --- /dev/null +++ b/src/uri.c @@ -0,0 +1,8 @@ +/** + * Necronda Web Server + * URI and path handlers + * src/uri.c + * Lorenz Stechauner, 2020-12-13 + */ + +#include "uri.h" diff --git a/src/uri.h b/src/uri.h new file mode 100644 index 0000000..b6ccaa4 --- /dev/null +++ b/src/uri.h @@ -0,0 +1,11 @@ +/** + * Necronda Web Server + * URI and path handlers (header file) + * src/uri.h + * Lorenz Stechauner, 2020-12-13 + */ + +#ifndef NECRONDA_SERVER_URI_H +#define NECRONDA_SERVER_URI_H + +#endif //NECRONDA_SERVER_URI_H