[PercentEncoding] Add minimal percent encoding/decoding functions

This commit is contained in:
TennesseeTrash 2025-06-10 00:31:58 +02:00
parent ed6dc601cc
commit 2eefad4152
4 changed files with 180 additions and 0 deletions

View file

@ -0,0 +1,17 @@
add_executable(TestPercentEncoding)
target_compile_features(TestPercentEncoding
PRIVATE
cxx_std_20
)
target_link_libraries(TestPercentEncoding
PRIVATE
Garbage
Catch2::Catch2WithMain
)
target_sources(TestPercentEncoding
PRIVATE
Tests.cpp
)