mirror of
https://github.com/PowerShell/Win32-OpenSSH.git
synced 2025-07-05 05:04:47 +02:00
12 lines
207 B
C
12 lines
207 B
C
/*
|
|
* Author: Manoj Ampalam <manoj.ampalam@microsoft.com>
|
|
*
|
|
* UTF-16 <--> UTF-8 definitions
|
|
*/
|
|
#ifndef UTF_H
|
|
#define UTF_H 1
|
|
|
|
wchar_t* utf8_to_utf16(const char *);
|
|
char* utf16_to_utf8(const wchar_t*);
|
|
|
|
#endif |