⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stk_blob.h

📁 C语言库函数的源代码,是C语言学习参考的好文档。
💻 H
字号:
/* +++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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -