?? mktl.c
字號:
/* Create command files for Borland TLIB command. Reads list of
* object file names from stdin in free format
*/
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
int
main()
{
int c;
int prev = 0;
for(;;){
/* Skip leading white space */
while(c = getchar(),isspace(c))
;
if(c == EOF)
break;
if(prev)
printf(" &\n");
/* Print "+token" */
printf("+%c",c);
while(c = getchar(),!isspace(c) && c != EOF)
putchar(c);
if(c == EOF)
break;
prev = 1;
}
putchar('\n'); /* Final line is empty */
return 0;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -