mirror of
https://github.com/meshtastic/firmware.git
synced 2025-04-26 09:59:01 +00:00
9 lines
179 B
C++
9 lines
179 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);
|
|
|