LoRa_APRS_iGate/include/query_utils.h

13 lines
208 B
C
Raw Normal View History

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