mirror of
https://github.com/textmate/textmate.git
synced 2026-01-22 21:27:56 -05:00
17 lines
426 B
C++
17 lines
426 B
C++
#ifndef DECODE_H_53UK6QRW
|
|
#define DECODE_H_53UK6QRW
|
|
|
|
#include <oak/misc.h>
|
|
|
|
namespace decode
|
|
{
|
|
PUBLIC std::string base32 (std::string const& src);
|
|
PUBLIC std::string base64 (std::string const& src);
|
|
PUBLIC std::string rot13 (std::string src);
|
|
PUBLIC std::string entities (std::string const& src);
|
|
PUBLIC std::string url_part (std::string const& src);
|
|
|
|
} /* decode */
|
|
|
|
#endif /* end of include guard: DECODE_H_53UK6QRW */
|