📄 getcwd.c
字号:
#if !defined(lint) && defined(SCCSIDS)static char sccsid[] = "@(#)getcwd.c 1.1 92/07/30 SMI"; /* from S5R2 1.2 */#endif/*LINTLIBRARY*//* * Library routine to GET the Current Working Directory. * arg1 is a pointer to a character buffer into which the * path name of the current directory is placed by the * subroutine. arg1 may be zero, in which case the * subroutine will call malloc to get the required space. * arg2 is the length of the buffer space for the path-name. * If the actual path-name is longer than (arg2-2), or if * the value of arg2 is not at least 3, the subroutine will * return a value of zero, with errno set as appropriate. */#include <stdio.h>#include <sys/errno.h>extern FILE *popen();extern char *malloc(), *fgets(), *strchr();extern int errno, pclose();char *getcwd(arg1, arg2)char *arg1;int arg2;{ FILE *pipe; char *trm; if(arg2 <= 0) { errno = EINVAL; return(0); } if(arg1 == 0) if((arg1 = malloc((unsigned)arg2)) == 0) { errno = ENOMEM; return(0); } errno = 0; if((pipe = popen("pwd", "r")) == 0) return(0); (void) fgets(arg1, arg2, pipe); (void) pclose(pipe); trm = strchr(arg1, '\0'); if(*(trm-1) != '\n') { errno = ERANGE; return(0); } *(trm-1) = '\0'; return(arg1);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -