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

📄 stk_str.h

📁 国外网站上的一些精典的C程序
💻 H
字号:
/* =======================================================================    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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -