refactor: move html_util into legacy core library

This commit is contained in:
2026-02-20 21:17:48 +01:00
parent 2cfdc719c2
commit 6acb588069
5 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
#pragma once
// Include this header in legacy Unity tests to force-link dd3_legacy_core.
void dd3_legacy_core_force_link();

View File

@@ -0,0 +1,7 @@
#pragma once
#include <Arduino.h>
String html_escape(const String &input);
String url_encode_component(const String &input);
bool sanitize_device_id(const String &input, String &out_device_id);