📄 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 + -