Skip to content

Commit

Permalink
Fixed long lines in etc/c/curl.d
Browse files Browse the repository at this point in the history
  • Loading branch information
JackStouffer committed May 11, 2016
1 parent 3890f5d commit e10acac
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions etc/c/curl.d
Original file line number Diff line number Diff line change
Expand Up @@ -1563,7 +1563,14 @@ CURLcode curl_global_init(c_long flags);
* callback routines with be invoked by this library instead of the system
* memory management routines like malloc, free etc.
*/
CURLcode curl_global_init_mem(c_long flags, curl_malloc_callback m, curl_free_callback f, curl_realloc_callback r, curl_strdup_callback s, curl_calloc_callback c);
CURLcode curl_global_init_mem(
c_long flags,
curl_malloc_callback m,
curl_free_callback f,
curl_realloc_callback r,
curl_strdup_callback s,
curl_calloc_callback c
);

/**
* Name: curl_global_cleanup()
Expand Down Expand Up @@ -2139,7 +2146,13 @@ extern (C) CURLMcode curl_multi_remove_handle(CURLM *multi_handle, CURL *curl_h
/** tmp decl */
alias fd_set = int;
///
extern (C) CURLMcode curl_multi_fdset(CURLM *multi_handle, fd_set *read_fd_set, fd_set *write_fd_set, fd_set *exc_fd_set, int *max_fd);
extern (C) CURLMcode curl_multi_fdset(
CURLM *multi_handle,
fd_set *read_fd_set,
fd_set *write_fd_set,
fd_set *exc_fd_set,
int *max_fd
);

/**
* Name: curl_multi_perform()
Expand Down

0 comments on commit e10acac

Please sign in to comment.