mirror of
https://github.com/meshtastic/firmware.git
synced 2026-01-15 06:17:47 +00:00
* fix missing include * fix request, add handled --------- Co-authored-by: mverch67 <manuel.verch@gmx.de>
8 lines
195 B
C++
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);
|