slog_strlist.h

来自「MPICH是MPI的重要研究,提供了一系列的接口函数,为并行计算的实现提供了编程」· C头文件 代码 · 共 29 行

H
29
字号
#if !defined( _SLOG )#include "slog.h"#endif  /*  if !defined( _SLOG )  */SLOG_strlist_t *SLOG_StrList_CreateFromVarArgs( const SLOG_uint32 Nstrs, ... );SLOG_strlist_t *SLOG_StrList_CreateFromArray( const SLOG_uint32   Nstrs,                                                    char        **strs );SLOG_strlist_t *SLOG_StrList_Copy( const SLOG_strlist_t *src );SLOG_strlist_t *SLOG_StrList_Append(       SLOG_strlist_t *dest,                                     const SLOG_strlist_t *src );void SLOG_StrList_Free( SLOG_strlist_t  *strlist );int SLOG_StrList_Print( const SLOG_strlist_t *strlist, FILE *outfd );int SLOG_StrList_WriteToFile( const SLOG_strlist_t *strlist, FILE *fd );SLOG_strlist_t *SLOG_StrList_ReadFromFile( FILE *fd );int SLOG_StrList_WriteToFileAsStrs( const SLOG_strlist_t *strlist, FILE *fd );SLOG_strlist_t *SLOG_StrList_ReadFromFileAsStrs( FILE *fd );int SLOG_StrList_IsEqualTo( const SLOG_strlist_t *strlist1,                            const SLOG_strlist_t *strlist2 );

⌨️ 快捷键说明

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