We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 20ce691 + 20b664c commit 18ee933Copy full SHA for 18ee933
1 file changed
src/WebResponses.cpp
@@ -6,17 +6,6 @@
6
7
using namespace asyncsrv;
8
9
-// Since ESP8266 does not link memchr by default, here's its implementation.
10
-void *memchr(void *ptr, int ch, size_t count) {
11
- unsigned char *p = static_cast<unsigned char *>(ptr);
12
- while (count--) {
13
- if (*p++ == static_cast<unsigned char>(ch)) {
14
- return --p;
15
- }
16
17
- return nullptr;
18
-}
19
-
20
/*
21
* Abstract Response
22
*
0 commit comments