📄 pss-driver.c
字号:
# include <stdio.h># include "sets.h"# include "slice.h"# include "lif.h"# include <malloc.h># include <string.h>extern int v_opt,n_ptrs;main(np,p) int np; char *p[];{ int status; int i,fx; if (np < 2) exit(1); fx = 0; for (i = 1; i < np; i++){ if (p[i][0] == '-'){ if (strcmp("-v",p[i]) == 0)v_opt = 1; } else fx = i; } i = strlen(p[fx]); p[fx][i-1] = '\0'; status = read_k_file(p[fx]); printf ("%s: K file status %d\n",p[fx],status); status = read_link_file(p[fx]); printf ("%s: LINK file status %d\n",p[fx],status);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -