Update chttp.c/.h

This commit is contained in:
2025-12-02 12:07:10 +01:00
parent 70a3a91783
commit f665dae9ed
5 changed files with 1423 additions and 623 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ bool streq(string s1, string s2)
return true;
}
// Returns the current time in milliseconds since
// Returns the current time in nanoseconds since
// an unspecified time in the past (useful to calculate
// elapsed time intervals)
Time get_current_time(void)
+4 -1
View File
@@ -3,7 +3,10 @@
#include "basic.h"
#ifndef _WIN32
#ifdef _WIN32
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#else
#include <dirent.h>
#endif