pwd.c
来自「boost库提供标准的C++ API 配合dev c++使用,功能更加强大」· C语言 代码 · 共 37 行
C
37 行
#include "jam.h"
#include "lists.h"
#include "newstr.h"
#include "pathsys.h"
#include <limits.h>
/* MinGW on windows declares PATH_MAX in limits.h */
#if defined(NT) && ! defined(__GNUC__)
#include <direct.h>
#define PATH_MAX _MAX_PATH
#else
#include <unistd.h>
#endif
LIST*
pwd(void)
{
char buffer[PATH_MAX];
if (getcwd(buffer, sizeof(buffer)) == NULL)
{
perror("can not get current directory");
return L0;
}
else
{
#ifdef NT
return list_new(L0, short_path_to_long_path(buffer));
#else
return list_new(L0, newstr(buffer));
#endif
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?