repo.or.cz
/
ghsmtp.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
removed
[ghsmtp.git]
/
esc.hpp
blob
e9033ac3c08a9cd925ddc33a52304a9e2179501d
1
#ifndef ESC_DOT_HPP
2
#define ESC_DOT_HPP
3
4
#include <string>
5
#include <string_view>
6
7
enum
class
esc_line_option
:
bool
{
single
,
multi
};
8
std
::
string
esc
(
std
::
string_view str
,
9
esc_line_option line_option
=
esc_line_option
::
single
);
10
11
#endif
// ESC_DOT_HPP