declare esc_to_csv() method with a wstring

This commit is contained in:
Tomasz Sowa 2023-05-27 18:18:00 +02:00
parent 96a3a564cf
commit 987d9c845c
Signed by: tomasz.sowa
GPG Key ID: 662CC1438638588B
1 changed files with 2 additions and 1 deletions

View File

@ -5,7 +5,7 @@
*/
/*
* Copyright (c) 2017-2022, Tomasz Sowa
* Copyright (c) 2017-2023, Tomasz Sowa
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@ -75,6 +75,7 @@ void esc_to_csv(const char * c, std::size_t len, pt::Stream & out);
void esc_to_csv(const wchar_t * c, pt::Stream & out);
void esc_to_csv(const wchar_t * c, size_t len, pt::Stream & out);
void esc_to_csv(const std::string & in, Stream & out);
void esc_to_csv(const std::wstring & in, Stream & out);