From cc53b43c8a2b5f5c1ccb01165be1975ca4e7ab9e Mon Sep 17 00:00:00 2001 From: Lorenz Stechauner Date: Sun, 13 Dec 2020 14:02:36 +0100 Subject: [PATCH] Added uri.h and uri.c --- src/uri.c | 8 ++++++++ src/uri.h | 11 +++++++++++ 2 files changed, 19 insertions(+) create mode 100644 src/uri.c create mode 100644 src/uri.h 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