📄 io.h
字号:
/* * io.h -- * *//* * $Id: io.h,v 1.1 2002/10/14 21:56:01 enlf Exp $ */#ifndef _IO#define _IO#include "jpeg.h"/* * Size of the input and output buffer */#define JPEG_BUF_SIZE 4096 /* * The following variables keep track of the input and output * buffer for the JPEG data. */extern char outputBuffer[JPEG_BUF_SIZE]; /* output buffer */extern int numOutputBytes; /* bytes in the output buffer */extern Uchar *inputBuffer; /* Input buffer for JPEG data */extern int inputBufferOffset; /* Offset of current byte */#endif /* _IO */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -