📄 noenv.c
字号:
/***
*noenv.c - stub out CRT's environment string processing
*
* Copyright (c) Microsoft Corporation. All rights reserved.
*
*Purpose:
* Stub out the environment string processing normally carried out at
* during startup. Note, getenv, _putenv and _environ are not supported
* if this object is used. Nor is the third argument to main.
*
*******************************************************************************/
#include <stdlib.h>
#ifdef _M_CEE_PURE
#define _CALLING __clrcall
#else /* _M_CEE_PURE */
#define _CALLING __cdecl
#endif /* _M_CEE_PURE */
int _CALLING _setenvp(void) { return 0; }
void * _CALLING __crtGetEnvironmentStringsA(void) { return NULL; }
int _CALLING _wsetenvp(void) { return 0; }
void * _CALLING __crtGetEnvironmentStringsW(void) { return NULL; }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -