📄 httppil.c
字号:
///////////////////////////////////////////////////////////////////////////////// httppil.c//// MiniWeb Platform Independent Layer///////////////////////////////////////////////////////////////////////////////#include "httppil.h"int gettime(){#ifdef WIN32 return GetTickCount()>>10;#else struct timeval tv; gettimeofday(&tv, NULL); return tv.tv_sec;#endif}void msleep(int ms){#ifdef WIN32 Sleep(ms);#else usleep(ms<<10);#endif}int initSocket(){#ifdef WIN32 WSADATA wsaData; if ( WSAStartup( MAKEWORD( 2, 2 ), &wsaData ) ) { return 0; }#endif return 1; }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -