stk_blob.h

来自「国外网站上的一些精典的C程序」· C头文件 代码 · 共 31 行

H
31
字号
/* =======================================================================    STK_BLOB.h      Stack of Blobs. Binary Large OBjects.                    A.Reitsma, Delft, The Netherlands.                    v0.10  94-07-03  Public Domain.    This module is essentially an interface to the generic Stack module.    The size of the items is however variable.    This module is still VERY experimental.    A separate FAR version required ???----------------------------------------------------------------------- */#ifndef STK_BLOB_H#define STK_BLOB_Hint  StackBlobCreate( void );int  PushBlob( int Stack, void * BlobSource, unsigned int BlobSize );                /* Duplicates contents of BlobSource on a stack         */unsigned int PopBlob( int Stack, void * BlobDestination );                /* Returns blobsize. If BlobDestination == NULL that's  */                /* all it does. I.e: it is NOT a real Pop.              */                /* Not NULL: Blob data is put into the indicated space, */                /* i.e. it is a 'real' Pop.                             */                /* Purpose: giving caller opportunity to allocate space */#endif/* ==== STK_BLOB.h end ================================================ */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?