limit line length to 79 characters

This commit is contained in:
josch
2014-09-25 19:38:48 +02:00
parent 32fcb30572
commit dcce69e66d
13 changed files with 29 additions and 15 deletions

View File

@@ -34,7 +34,8 @@ int http_post_buf(mfhttp * conn, const char *url,
const char *post_args,
int (*data_handler) (mfhttp * conn, void *data),
void *data);
int http_get_file(mfhttp * conn, const char *url, const char *path);
int http_get_file(mfhttp * conn, const char *url,
const char *path);
int http_post_file(mfhttp * conn, const char *url,
const char *post_args, FILE * fd);
json_t *http_parse_buf_json(mfhttp * conn, size_t flags,