?? vfw.c
字號:
#ifndef lintstatic char sccsid[] = "@(#)vfw.c 4.2 (Berkeley) 7/16/83";#endif/* * Quick hack to see the values in a troff width table. */#include <stdio.h>main(argc,argv)char **argv;{ FILE *f; int c; int i; if (argc != 2) { printf("usage: vfw ftX\n"); exit(1); } f = fopen(argv[1], "r"); if (f == NULL) { printf("Can't open %s\n", argv[1]); exit(1); } fseek(f, 32L, 0); for (i=0; !feof(f); i++) { c = getc(f); printf("%d\t%d\n", i, c&255); } exit(0);}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -