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

📄 strlist.h

📁 fdisk 实现源码,可以查询Linux下系统的分区信息
💻 H
字号:
/*    GNU fdisk - a clone of Linux fdisk.    This file originally from GNU Parted.    Copyright (C) 1999, 2000, 2001, 2002, 2006 Free Software Foundation, Inc.    This program is free software; you can redistribute it and/or modify    it under the terms of the GNU General Public License as published by    the Free Software Foundation; either version 3 of the License, or    (at your option) any later version.    This program is distributed in the hope that it will be useful,    but WITHOUT ANY WARRANTY; without even the implied warranty of    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    GNU General Public License for more details.    You should have received a copy of the GNU General Public License    along with this program; if not, write to the Free Software    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA*/#ifndef STRLIST_H_INCLUDED#define STRLIST_H_INCLUDED#include <wchar.h>typedef struct _StrList StrList;struct _StrList {	StrList*	next;	const wchar_t*	str;};extern char* language;extern char* gettext_charset;extern char* term_charset;extern StrList* str_list_create (const char* first, ...);extern StrList* str_list_create_unique (const char* first, ...);extern void str_list_destroy (StrList* list);extern void str_list_destroy_node (StrList* list);extern StrList* str_list_duplicate (const StrList* list);extern StrList* str_list_duplicate_node (const StrList* list);extern StrList* str_list_insert (StrList* list, const char* str);extern StrList* str_list_append (StrList* list, const char* str);extern StrList* str_list_append_unique (StrList* list, const char* str);extern StrList* str_list_join (StrList* a, StrList* b);extern char* str_list_convert (const StrList* list);extern char* str_list_convert_node (const StrList* list);extern void str_list_print (const StrList* list);extern void str_list_print_wrap (const StrList* list, int line_length,				 int offset, int indent);extern int str_list_match_any (const StrList* list, const char* str);extern int str_list_match_node (const StrList* list, const char* str);extern StrList* str_list_match (const StrList* list, const char* str);extern int str_list_length (const StrList* list);#endif /* STRLIST_H_INCLUDED */

⌨️ 快捷键说明

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