update docs

This commit is contained in:
Axel Kohlmeyer
2021-10-05 21:57:53 -04:00
parent b2c4f08bbc
commit 6f2076a9b8
3 changed files with 9 additions and 2 deletions

View File

@ -18,6 +18,9 @@ Time functions
.. doxygenfunction:: walltime
:project: progguide
.. doxygenfunction:: usleep
:project: progguide
Platform information functions
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@ -88,6 +91,9 @@ File and path functions and global constants
Standard I/O function wrappers
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. doxygenvariable:: END_OF_FILE
:project: progguide
.. doxygenfunction:: ftell
:project: progguide

View File

@ -3444,6 +3444,7 @@ usec
uSemiParallel
userguide
username
usleep
usr
util
utils

View File

@ -47,7 +47,7 @@ TokenizerException::TokenizerException(const std::string &msg, const std::string
\endverbatim
*
* \param str string to be processed
* \param separators string with separator characters (default: " \t\r\n\f") */
* \param _separators string with separator characters (default: " \t\r\n\f") */
Tokenizer::Tokenizer(const std::string &str, const std::string &_separators) :
text(str), separators(_separators), start(0), ntokens(std::string::npos)