📄 mkstemp.c
字号:
#if !defined(lint) && defined(SCCSIDS)static char sccsid[] = "@(#)mkstemp.c 1.1 92/07/30 SMI"; /* from UCB 5.2 3/9/86 */#endif/* * Copyright (c) 1983 Regents of the University of California. * All rights reserved. The Berkeley software License Agreement * specifies the terms and conditions for redistribution. */#include <sys/file.h>mkstemp(as) char *as;{ register char *s; register unsigned int pid; register int fd, i; pid = getpid(); s = as; while (*s++) /* void */; s--; while (*--s == 'X') { *s = (pid % 10) + '0'; pid /= 10; } s++; i = 'a'; while ((fd = open(as, O_CREAT|O_EXCL|O_RDWR, 0600)) == -1) { if (i == 'z') return(-1); *s = i++; } return(fd);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -