mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-30 23:59:41 +02:00
21 lines
400 B
C++
21 lines
400 B
C++
/*!********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
@file UrlDecode.h
|
|
@brief Declare a function to decode an URL encode string.
|
|
|
|
Dmitry Vedenko
|
|
**********************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace audacity
|
|
{
|
|
|
|
STRING_UTILS_API std::string UrlDecode (const std::string& url);
|
|
|
|
}
|