📄 glob.h
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -