我终于让自己看一些 linux 代码。我现在正在看“ls.c”。
在底部的函数“usage()”中,我发现了很多这样的语句:
fputs (_("\
List information about the FILEs (the current directory by default).\n\
Sort entries alphabetically if none of -cftuvSUX nor --sort is specified.\n\
\n\
"), stdout);
这是什么意思?它是像 L"string" 或 _T"string" 还是全新的东西?我还必须承认我不知道用什么词来搜索这样的东西。
希望您能够帮助我。