Ignore:
Timestamp:
2015-02-20T22:50:54Z (9 years ago)
Author:
dequis <dx@…>
Branches:
master
Children:
0b9daac, 3d45471, 7733b8c
Parents:
af359b4
git-author:
Indent <please@…> (19-02-15 05:47:20)
git-committer:
dequis <dx@…> (20-02-15 22:50:54)
Message:

Reindent everything to K&R style with tabs

Used uncrustify, with the configuration file in ./doc/uncrustify.cfg

Commit author set to "Indent <please@…>" so that it's easier to
skip while doing git blame.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/yahoo/yahoo_httplib.h

    raf359b4 r5ebff60  
    2929#include "yahoo2_types.h"
    3030
    31         char *yahoo_urlencode(const char *instr);
    32         char *yahoo_urldecode(const char *instr);
    33         char *yahoo_xmldecode(const char *instr);
     31char *yahoo_urlencode(const char *instr);
     32char *yahoo_urldecode(const char *instr);
     33char *yahoo_xmldecode(const char *instr);
    3434
    35         int yahoo_tcp_readline(char *ptr, int maxlen, void *fd);
    36         void yahoo_http_post(int id, const char *url, const char *cookies,
    37                 long size, yahoo_get_fd_callback callback, void *data);
    38         void yahoo_http_get(int id, const char *url, const char *cookies,
    39                 int http11, int keepalive, yahoo_get_fd_callback callback,
    40                 void *data);
    41         void yahoo_http_head(int id, const char *url, const char *cookies,
    42                 int size, char *payload, yahoo_get_fd_callback callback,
    43                 void *data);
     35int yahoo_tcp_readline(char *ptr, int maxlen, void *fd);
     36void yahoo_http_post(int id, const char *url, const char *cookies,
     37                     long size, yahoo_get_fd_callback callback, void *data);
     38void yahoo_http_get(int id, const char *url, const char *cookies,
     39                    int http11, int keepalive, yahoo_get_fd_callback callback,
     40                    void *data);
     41void yahoo_http_head(int id, const char *url, const char *cookies,
     42                     int size, char *payload, yahoo_get_fd_callback callback,
     43                     void *data);
    4444
    4545#ifdef __cplusplus
Note: See TracChangeset for help on using the changeset viewer.