sscanf从字符串中提取需要的字段

char line[128] = “OPTIONS rtsp://127.0.0.1:8554/live RTSP/1.0\r\n”;
sscanf(line, “%s %s %s\r\n”, method, url, version);

你可能感兴趣的:(C语言)