📄 auxf.c
字号:
#ifndef lintstatic char *sccsid = "@(#)auxf.c 4.1 (ULTRIX) 7/17/90";#endif lint/* Figures out names for g-file, l-file, x-file, etc. File Module g-file l-file x-file & rest a/s.m m m l.m a/x.m Second argument is letter; 0 means module name is wanted.*/#include "defines.h"char *auxf(sfile,ch)register char *sfile;register char ch;{ static char auxfile[FILESIZE]; register char *snp; snp = sname(sfile); switch(ch) { case 0: case 'g': copy(&snp[2],auxfile); break; case 'l': copy(snp,auxfile); auxfile[0] = 'l'; break; default: copy(sfile,auxfile); auxfile[snp-sfile] = ch; } return(auxfile);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -