语法高亮,滚动条美化,设置页面调整

This commit is contained in:
fofolee
2019-04-19 02:41:09 +08:00
parent 1e8f76c000
commit 359d29ee0b
1590 changed files with 12328 additions and 11441 deletions

View File

@@ -8,12 +8,12 @@
<p>功能分解字符串为一组标记串。s为要分解的字符串delim为分隔符字符串。</p>
<p>说明首次调用时s必须指向要分解的字符串随后调用要把s设成NULL。</p>
<pre>
<pre><code class="language-c">
strtok在s中查找包含在delim中的字符并用NULL('\0')来替换,直到找遍整个字符串。
返回指向下一个标记串。当没有标记串时则返回空字符NULL。
</pre>
</code></pre>
举例:<pre>
举例:<pre><code class="language-c">
// strtok.c
@@ -41,5 +41,5 @@
return 0;
}
</pre>相关函数:<a href="strcspn.html">strcspn</a>,<a href="strpbrk.html">strpbrk</a>
</code></pre>相关函数:<a href="strcspn.html">strcspn</a>,<a href="strpbrk.html">strpbrk</a>