diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-09-03 03:54:34 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-09-03 03:54:34 +0200 |
commit | 59ab740192bc26abfc33b37bb2d4719c49dfaec9 (patch) | |
tree | 7ef948290c21411959cf102d6fe9deabd46ee5a8 /doc/info/mds.texinfo | |
parent | m (diff) | |
download | mds-59ab740192bc26abfc33b37bb2d4719c49dfaec9.tar.gz mds-59ab740192bc26abfc33b37bb2d4719c49dfaec9.tar.bz2 mds-59ab740192bc26abfc33b37bb2d4719c49dfaec9.tar.xz |
info: strend
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'doc/info/mds.texinfo')
-rw-r--r-- | doc/info/mds.texinfo | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/info/mds.texinfo b/doc/info/mds.texinfo index 40c2dee..1af0556 100644 --- a/doc/info/mds.texinfo +++ b/doc/info/mds.texinfo @@ -6486,6 +6486,13 @@ failure will be printed to standard error. @cpindex Terminating If @code{condition} is satisfied, @code{instructions} is invoked and @code{1} is @code{return}:ed. + +@item @code{STREND} [(@code{const char* str}) @arrow{} @code{char*}] +@fnindex @code{STREND} +@cpindex Optimisations +Expands to @code{(strchr(str, '\0'))}. It is here to +remain us that @code{str = strchr(str, '\0')} is faster +than @code{str += strlen(str)}. @end table @cpindex Signals |