LoRa_APRS_iGate/include/query_utils.h

13 lines
208 B
C
Raw Normal View History

2023-06-06 21:53:06 +02:00
#ifndef QUERY_UTILS_H_
#define QUERY_UTILS_H_
#include <Arduino.h>
2024-02-25 14:53:16 +01:00
2023-06-06 21:53:06 +02:00
namespace QUERY_Utils {
2024-06-28 22:05:04 +02:00
String process(const String& query, const String& station, bool queryFromAPRSIS, bool thirdParty);
2023-06-06 21:53:06 +02:00
}
#endif