mirror of
https://github.com/rapid7/metasploit-payloads
synced 2025-03-18 15:14:10 +01:00
16 lines
283 B
C
16 lines
283 B
C
/*!
|
|
* @file common.h
|
|
* @brief Declarations for unicode conversion functions
|
|
*/
|
|
|
|
#ifndef _METERPRETER_SOURCE_COMMON_UNICODE_H
|
|
#define _METERPRETER_SOURCE_COMMON_UNICODE_H
|
|
|
|
#include <wchar.h>
|
|
|
|
wchar_t *utf8_to_wchar(const char *in);
|
|
|
|
char *wchar_to_utf8(const wchar_t *in);
|
|
|
|
#endif
|