glob.h

来自「伯克利做的SFTP安全文件传输协议」· C头文件 代码 · 共 25 行

H
25
字号
// glob.h// my globbing fn// copyright SafeTP Development Group, Inc., 2000  Terms of use are as specified in license.txt#ifndef __GLOB_H#define __GLOB_H#include "typ.h"        // boolbool glob(char const *str, char const *pattern);  // returns true if 'str' matches 'pattern'  // codes in 'pattern':  //   *       matches any number (>=0) of any character  //   ?       matches any character  //   \*      matches literal *  //   \?      matches literal ?  //   \\      matches literal \ (backslash)// unimplemented, but possibly useful://   [] expressions#endif // __GLOB_H

⌨️ 快捷键说明

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