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

📄 text.h

📁 Larbin互联网蜘蛛索引系统
💻 H
字号:
// Larbin// Sebastien Ailleret// 18-11-99 -> 20-12-99#ifndef TEXT_H#define TEXT_H#include "xutils/string.h"/* lowercase a char */char lowerCase (char a);/* tests if b starts with a */int startWith (char *a, char *b);/* tests if b starts with a ignoring case */int startWithIgnoreCase (char *a, char *b);/* test if b end with a */int endWith (char *a, char *b);/* test if b end with a ignoring case */int endWithIgnoreCase (char *a, char *b);/* tests if b contains a */int contain (char *a, char *b);/* create a copy of a string */char *newString (char *arg);/* Read a line on a file descriptor * returns a string without the final \n * don't care end of file (make sure someone might eventually write !) */char *noEndReadline (int fds);/* Read a whole file */char *readfile (int fds);/* next word in this string */char *nextToken (String &strin, uint *pos);#endif // TEXT_H

⌨️ 快捷键说明

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