1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-19 17:11:12 +02:00

Adds lib-string-utils

This commit is contained in:
Dmitry Vedenko
2021-05-25 16:07:10 +03:00
parent 733cf89cff
commit 52a835bd61
11 changed files with 356 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
/*!********************************************************************
Audacity: A Digital Audio Editor
@file UrlEncode.h
@brief Declare a function to perfom URL encoding of a string.
Dmitry Vedenko
**********************************************************************/
#pragma once
#include <string>
namespace audacity
{
STRING_UTILS_API std::string UrlEncode (const std::string& url);
}