stk_str.h
来自「c语言库函数!里面包含了所以c语言中的系统函数的实现及其详细说明和代码!请大家及」· C头文件 代码 · 共 25 行
H
25 行
/* +++Date last modified: 05-Jul-1997 */
/* =======================================================================
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 + -
显示快捷键?