link_.c
来自「<B>Digital的Unix操作系统VAX 4.2源码</B>」· C语言 代码 · 共 37 行
C
37 行
/*char id_link[] = "@(#)link_.c 1.2"; * * make a link to an existing file * * calling sequence: * ierror = link(name1, name2) * where: * name1 is the pathname of an existing file * name2 is a pathname to be linked to file name1 * ierror will be 0 if successful; a system error code otherwise. */#include "../libI77/f_errno.h"#include <sys/param.h>#ifndef MAXPATHLEN#define MAXPATHLEN 128#endiflong link_(name1, name2, n1len, n2len)char *name1, *name2;long n1len, n2len;{ char buf1[MAXPATHLEN]; char buf2[MAXPATHLEN]; if (n1len >= sizeof buf1 || n2len >= sizeof buf2) return((long)(errno=F_ERARG)); g_char(name1, n1len, buf1); g_char(name2, n2len, buf2); if (buf1[0] == '\0' || buf2[0] == '\0') return((long)(errno=F_ERARG)); if (link(buf1, buf2) != 0) return((long)errno); return(0L);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?