📄 getcwd_.c
字号:
/*char id_getcwd[] = "@(#)getcwd_.c 1.5"; * Get pathname of current working directory. * * calling sequence: * character*128 path * ierr = getcwd(path) * where: * path will receive the pathname of the current working directory. * ierr will be 0 if successful, a system error code otherwise. */#include <sys/param.h>#ifndef MAXPATHLEN#define MAXPATHLEN 128#endifextern int errno;char *getwd();longgetcwd_(path, len)char *path;long len;{ char *p; char pathname[MAXPATHLEN]; p = getwd(pathname); b_char(pathname, path, len); if (p) return(0L); else return((long)errno);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -