1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-30 07:39:42 +02:00
2021-05-26 12:46:45 +03:00

21 lines
404 B
C++

/*!********************************************************************
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);
}