Support thread local storage

This commit is contained in:
Justine Tunney 2022-05-16 13:20:08 -07:00
parent 91ee2b19d4
commit 55de4ca6b5
197 changed files with 1483 additions and 874 deletions

View file

@ -27,6 +27,15 @@
*
* Sun, 04 Oct 2020 19:50:10 GMT
*
* This function is the same as:
*
* strftime(p, 30, "%a, %d %b %Y %H:%M:%S %Z", tm)
*
* Except this function goes 10x faster:
*
* FormatHttpDateTime l: 25𝑐 8𝑛𝑠
* strftime l: 709𝑐 229𝑛𝑠
*
* @param tm must be zulu see gmtime_r() and nowl()
* @see ParseHttpDateTime()
*/