Changeset 31be464 for doc/theses


Ignore:
Timestamp:
Aug 22, 2025, 7:38:46 AM (4 weeks ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
db09685
Parents:
8dc8f68
Message:

fix include/exclude function order in comparison table

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/theses/mike_brooks_MMath/string.tex

    r8dc8f68 r31be464  
    2929@strncpy@                               & @replace@                             & @replace@             & @( )@, on LHS of @=@ \\
    3030@strstr@                                & @find@                                & @indexOf@             & @find@ \\
    31 @strcspn@                               & @find_first_of@               & @matches@             & @include@ \\
    32 @strspn@                                & @find_first_not_of@   & @matches@             & @exclude@ \\
     31@strcspn@                               & @find_first_of@               & @matches@             & @exclude@ \\
     32@strspn@                                & @find_first_not_of@   & @matches@             & @include@ \\
    3333N/A                                             & @c_str@, @data@               & N/A                   & @strcpy@, @strncpy@ \\
    3434\end{tabular}
     
    511511\end{cquote}
    512512
    513 There are also versions of @include@ and @exclude@, returning a position or string, taking a validation function, like one of the C character-class routines.\footnote{It is part of the hereditary of C that these function take and return an \lstinline{int} rather than a \lstinline{bool}, which affects the function type.}
     513There are also versions of @include@ and @exclude@, returning a position or string, taking a validation function, like one of the C character-class functions.\footnote{It is part of the hereditary of C that these function take and return an \lstinline{int} rather than a \lstinline{bool}, which affects the function type.}
    514514\begin{cquote}
    515515\setlength{\tabcolsep}{15pt}
Note: See TracChangeset for help on using the changeset viewer.