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

📄 rglob.h

📁 UNIX环境下命令行FTP/SFTP工具源代码
💻 H
字号:
/* $Id: rglob.h,v 1.4 2004/05/20 11:10:52 mhe Exp $ * * rglob.h -- remote glob functions * * Yet Another FTP Client * Copyright (C) 1998-2001, Martin Hedenfalk <mhe@stacken.kth.se> * * 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 2 of the License, or * (at your option) any later version. See COPYING for more details. */#ifndef _rglob_h_included#define _rglob_h_included#include "syshdr.h"#include "rfile.h"#include "linklist.h"#define NODOTDIRS rglob_exclude_dotdirstypedef bool (*rglobfunc)(rfile *f);list *rglob_create(void);void rglob_destroy(list *gl);bool rglob_exclude_dotdirs(rfile *f);int rglob_glob(list *gl, const char *mask, bool cpifnomatch,			   bool ignore_multiples, rglobfunc exclude_func);unsigned long long rglob_size(list *gl);unsigned long long rglob_numdirs(list *gl);#endif

⌨️ 快捷键说明

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