c-env-utils
C library to get environment information
Loading...
Searching...
No Matches
env_utils_windows.h
Go to the documentation of this file.
1#ifndef __C_ENV_UTILS_INCLUDE_ENV_UTILS_WINDOWS_H__
2#define __C_ENV_UTILS_INCLUDE_ENV_UTILS_WINDOWS_H__
3#include "env_utils.h"
4
5#ifdef __cplusplus
6extern "C" {
7#endif
8
17_ENVU_EXTERN wchar_t *envuUTF8toUTF16(const char* str);
18
27_ENVU_EXTERN char *envuUTF16toUTF8(const wchar_t* wstr);
28
29#ifdef __cplusplus
30}
31#endif
32
33#endif // __C_ENV_UTILS_INCLUDE_ENV_UTILS_WINDOWS_H__
#define _ENVU_EXTERN
Definition: env_utils.h:14
_ENVU_EXTERN char * envuUTF16toUTF8(const wchar_t *wstr)
Convert a UTF16 string to UTF8.
_ENVU_EXTERN wchar_t * envuUTF8toUTF16(const char *str)
Convert a UTF8 string to UTF16.