stk_blob.h

来自「c语言库函数!里面包含了所以c语言中的系统函数的实现及其详细说明和代码!请大家及」· C头文件 代码 · 共 33 行

H
33
字号
/* +++Date last modified: 05-Jul-1997 */

/* =======================================================================
    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_H

int  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 + -
显示快捷键?