forked from NTDLS/NSWFL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NSWFL_URLEncoding.H
26 lines (22 loc) · 1.26 KB
/
NSWFL_URLEncoding.H
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright © NetworkDLS 2023, All rights reserved
//
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PARTICULAR PURPOSE.
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#ifndef _NSWFL_URLEncoding_H_
#define _NSWFL_URLEncoding_H_
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
namespace NSWFL {
namespace Conversion {
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
int URLDecode(char *sBuffer);
int URLEncode(const char *sIn, char *sOut, int iMaxOut);
int URLEncode(const char *sIn, int iLength, char *sOut, int iMaxOut);
int URLEncodeSimulate(const char *sIn, int iLength);
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
} //namespace::Conversion
} //namespace::NSWFL
#endif