mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-30 07:39:42 +02:00
21 lines
404 B
C++
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);
|
|
|
|
}
|