diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-06-07 11:49:03 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-07 11:49:03 +0200 |
commit | 46527b72d7cfbeee163c1009e27805061fcddf09 (patch) | |
tree | 30fc4833a5f24e5a0b57d0d21c220d4fd6ba48d6 /LibC/strings.cpp | |
parent | 892acfb10d98014e8880fa957a14541020ec263c (diff) | |
download | serenity-46527b72d7cfbeee163c1009e27805061fcddf09.zip |
LibC: Run clang-format on everything.
Diffstat (limited to 'LibC/strings.cpp')
-rw-r--r-- | LibC/strings.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/LibC/strings.cpp b/LibC/strings.cpp index abbfeca214..8f248e1438 100644 --- a/LibC/strings.cpp +++ b/LibC/strings.cpp @@ -1,6 +1,6 @@ -#include <strings.h> #include <assert.h> #include <ctype.h> +#include <strings.h> extern "C" { @@ -32,5 +32,4 @@ int strncasecmp(const char* s1, const char* s2, size_t n) } while (--n); return 0; } - } |