![leitner](/assets/img/avatar_default.png)
add some single char escaping routines to fmt.h pull in html5 entities from w3c and use those to do a proper scan_html decoding fix an off-by-one in fmt_to_array add a ton of unit tests for the fmt routines
15 lines
201 B
C
15 lines
201 B
C
#include <sys/types.h>
|
|
#ifdef __MINGW32__
|
|
#include <winsock2.h>
|
|
#include <ws2tcpip.h>
|
|
#else
|
|
#include <sys/socket.h>
|
|
#include <netinet/in.h>
|
|
#endif
|
|
|
|
int main() {
|
|
socklen_t t;
|
|
(void)t;
|
|
return 0;
|
|
}
|