tmp/tmpun3gequ5/{from.md → to.md}
RENAMED
|
@@ -54,8 +54,19 @@ namespace std {
|
|
| 54 |
T6 setw(int n);
|
| 55 |
template <class moneyT> T7 get_money(moneyT& mon, bool intl = false);
|
| 56 |
template <class moneyT> T8 put_money(const moneyT& mon, bool intl = false);
|
| 57 |
template <class charT> T9 get_time(struct tm* tmb, const charT* fmt);
|
| 58 |
template <class charT> T10 put_time(const struct tm* tmb, const charT* fmt);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 59 |
}
|
| 60 |
```
|
| 61 |
|
|
|
|
| 54 |
T6 setw(int n);
|
| 55 |
template <class moneyT> T7 get_money(moneyT& mon, bool intl = false);
|
| 56 |
template <class moneyT> T8 put_money(const moneyT& mon, bool intl = false);
|
| 57 |
template <class charT> T9 get_time(struct tm* tmb, const charT* fmt);
|
| 58 |
template <class charT> T10 put_time(const struct tm* tmb, const charT* fmt);
|
| 59 |
+
|
| 60 |
+
template <class charT>
|
| 61 |
+
T11 quoted(const charT* s, charT delim=charT('"'), charT escape=charT('\\'));
|
| 62 |
+
|
| 63 |
+
template <class charT, class traits, class Allocator>
|
| 64 |
+
T12 quoted(const basic_string<charT, traits, Allocator>& s,
|
| 65 |
+
charT delim=charT('"'), charT escape=charT('\\'));
|
| 66 |
+
|
| 67 |
+
template <class charT, class traits, class Allocator>
|
| 68 |
+
T13 quoted(basic_string<charT, traits, Allocator>& s,
|
| 69 |
+
charT delim=charT('"'), charT escape=charT('\\'));
|
| 70 |
}
|
| 71 |
```
|
| 72 |
|