mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
remove old and unused @ syntax
This commit is contained in:
@ -5,12 +5,14 @@
|
||||
module http
|
||||
|
||||
#include <curl/curl.h>
|
||||
#flag windows -I/usr/local/opt/curl/include
|
||||
#flag darwin -lcurl
|
||||
#flag windows -lcurl
|
||||
#flag linux -lcurl
|
||||
@size_t kek
|
||||
@CURL* curl_easy_init
|
||||
|
||||
fn C.curl_easy_init() *C.CURL
|
||||
|
||||
fn foo() {}
|
||||
|
||||
type wsfn fn (s string, ptr voidptr)
|
||||
|
||||
struct MemoryStruct {
|
||||
@ -38,8 +40,6 @@ import const (
|
||||
CURLE_OK
|
||||
)
|
||||
|
||||
// type C.CURLcode {
|
||||
// }
|
||||
fn C.curl_easy_strerror(curl voidptr) byteptr
|
||||
|
||||
fn C.curl_easy_perform(curl voidptr) C.CURLcode
|
||||
|
Reference in New Issue
Block a user