forked from oulhafiane/HTTP-Web-Server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchunked.hpp
More file actions
20 lines (17 loc) · 1.04 KB
/
Copy pathchunked.hpp
File metadata and controls
20 lines (17 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* chunked.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: akarafi <akarafi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/09/06 21:41:57 by akarafi #+# #+# */
/* Updated: 2022/09/06 22:05:06 by akarafi ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef CHUNKED_HPP
# define CHUNKED_HPP
#include <string>
std::string decode_body(std::string const &encoded_body);
std::string encode_body(std::string const &body);
#endif