Files
firmware/src/mesh/http/ContentHelper.h
Tom Fifield ae93f3fa3f TFT branch - minor cherry picks (#5676)
* fix missing include

* fix request, add handled

---------

Co-authored-by: mverch67 <manuel.verch@gmx.de>
2024-12-27 05:12:33 -06:00

8 lines
195 B
C++

#include <Arduino.h>
#include <functional>
#include <string>
#define BoolToString(x) ((x) ? "true" : "false")
void replaceAll(std::string &str, const std::string &from, const std::string &to);