diff options
-rw-r--r-- | NEWS | 5 | ||||
-rw-r--r-- | doc/upgrade.html | 1 |
2 files changed, 5 insertions, 1 deletions
@@ -10,8 +10,11 @@ In 2.14.0.0 - New strerr macros to warn with a "fatal" message. - New cdb functions: cdb_hashv(), cdbmake_addv(). - child_spawn() revamp. Prototype change (last arg is a size_t). - - case_lowerb() and friends now use ctype.h functions + - case_lowerb() and friends now use ctype.h functions. - case_str() removed, strcasestr() fallback implementation added. + - cspawn(): finally unifying fork() and posix_spawn(). + - Better support for nonstandard posix_spawn subfunctions. + - Lots of new sysdeps. In 2.13.1.1 diff --git a/doc/upgrade.html b/doc/upgrade.html index 8c55e4b..8add0dc 100644 --- a/doc/upgrade.html +++ b/doc/upgrade.html @@ -26,6 +26,7 @@ <li> New cdb functions: <tt>cdb_hashv()</tt>, <tt>cdbmake_addv()</tt> </li> <li> New <tt>cspawn</tt> function, for posix_spawn/fork unification </li> <li> <tt>child_spawn</tt> functions are now declared in <tt>cspawn.h</tt> </li> + <li> New sysdeps for posix_spawn options and more </li> <li> <tt>case_lowerb() and friends now use ctype.h functions, supporting locale if it is declared in the application. </li> <li> <tt>case_str()</tt> removed, strcasestr() fallback implementation added </li> |