firmware/src/mesh/http/ContentHelper.h
2021-12-26 15:46:23 -08:00

7 lines
177 B
C++

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