?? bardemo.c
字號:
/*
* bardemo - demonstrate barcode printing subroutine
* written 1988 David J. Rodman, Paradise Technology, Inc.
* 70007,1545
* PUBLIC DOMAIN
*
* Note: Experiment with the resolution using your barcode reader -
* some readers like it thicker, some like it thinner.
* This program barcodes its arguments to its standard output.
* Typical usage: bardemo arg arg arg >prn
*/
#include <stdio.h>
main(ac, av)
char **av;
{
while(++av, --ac)
bar(*av);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -