📄 untab.txt
字号:
SUMMARY UnTab
#include <tools.h>
void UnTab(pstrSrc, pstrDest)
char *pstrSrc;
char *pstrDest;
DESCRIPTION
UnTab copies the source string to the destination expanding '\t' tabs.
RETURN VALUE
IMPLEMENTATION
SEE ALSO
NOTE
EXAMPLE
#include <tools.h>
char bufS[] = "oh\thello\tthere";
char bufD[256];
main(c, argv)
int c;
char *argv[];
{
UnTab(bufS, bufD);
printf("123456781234567812345678\n%s\n", bufD);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -