This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Claude Code CLI Environment Variables | |
# This file lists all environment variables used in cli.js with explanations | |
process.env.__CFB - Internal Node.js buffer flag | |
process.env.__MINIMATCH_TESTING_PLATFORM__ - Testing flag for minimatch library platform detection | |
process.env.ALACRITTY_LOG - Alacritty terminal emulator log level configuration | |
process.env.ALIYUN_REGION_ID - Alibaba Cloud region identifier for Chinese cloud services | |
process.env.ANTHROPIC_API_KEY - Primary API key for authenticating with Anthropic's Claude API | |
process.env.ANTHROPIC_AUTH_TOKEN - Alternative authentication token for Anthropic services | |
process.env.ANTHROPIC_BASE_URL - Custom base URL for Anthropic API endpoints |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Not sure whether it's faster than FindFirstFile, etc. - but it does it in one kernel call | |
#include <windows.h> | |
#include <stdio.h> | |
// to compile: | |
// cl fileinfo.c setargv.obj | |
void fileinfo(const char*name); | |
int main( int argc, const char* argv[] ) |