stk_str.h

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

H
23
字号
/* =======================================================================    STK_STR.h       Stack of Strings based on generic stack of Blobs.                    A.Reitsma, Delft, The Netherlands.                    v0.10  94-07-02  Public Domain.                    This module has no related .C file.                    Modules STK_BLOB and STACK are required.___-------------------------------------------------------------------- */#ifndef STK_STR_H#define STK_STR_H#include <string.h>#include "stk_blob.h"#define StackStringCreate()       StackBlobCreate()#define PushString(Stack,Str)     PushBlob( Stack, Str, strlen( Str ) +1 )#define PopString(Stack,Str)      PopBlob( Stack, Str )#endif/* ==== STK_STR.c end ================================================= */

⌨️ 快捷键说明

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