firmware/src/mesh/http/ContentHelper.h
2024-10-30 11:09:11 +01: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);