📄 pgpfifo.c
字号:
/*
* pgpFIFO.c -- This is just an abstraction on top of the bytefifo.
* Yes, I am forcing the issue. I don't care, since the bytefifo
* is going to be there anyways, so I might as well put this code
* here.
*
* $Id: pgpFIFO.c,v 1.5 1998/09/14 20:49:18 hal Exp $
*/
#include "pgpConfig.h"
#include "pgpByteFIFO.h"
#include "pgpFIFO.h"
PGPFifoDesc const pgpByteFifoDesc = {
"Byte Fifo",
byteFifoCreate,
byteFifoRead,
byteFifoWrite,
byteFifoPeek,
byteFifoSeek,
byteFifoFlush,
byteFifoDestroy,
byteFifoSize
};
PGPFifoDesc const pgpSecureByteFifoDesc = {
"Secure Byte Fifo",
byteFifoCreateSecure,
byteFifoRead,
byteFifoWrite,
byteFifoPeek,
byteFifoSeek,
byteFifoFlush,
byteFifoDestroy,
byteFifoSize
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -