From 04b9dc2d30cfc9b383029f6a4b02e2725108b0ae Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 4 Jul 2019 16:16:50 +0200 Subject: Libraries: Create top level directory for libraries. Things were getting a little crowded in the project root, so this patch moves the Lib*/ directories into Libraries/. --- Libraries/LibC/strings.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Libraries/LibC/strings.h (limited to 'Libraries/LibC/strings.h') diff --git a/Libraries/LibC/strings.h b/Libraries/LibC/strings.h new file mode 100644 index 0000000000..b7f7d1ed5a --- /dev/null +++ b/Libraries/LibC/strings.h @@ -0,0 +1,11 @@ +#pragma once + +#include +#include + +__BEGIN_DECLS + +int strcasecmp(const char*, const char*); +int strncasecmp(const char*, const char*, size_t); + +__END_DECLS -- cgit v1.2.3