📄 lib501.c
字号:
#include "test.h"CURLcode test(char *URL){ CURLcode res; CURL *curl = curl_easy_init(); (void)URL; /* we don't use this */ curl_easy_setopt(curl, CURLOPT_HEADER, TRUE); res = curl_easy_perform(curl); curl_easy_cleanup(curl); return res;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -