diff options
author | Indent <please@skip.me> | 2015-02-19 02:47:20 -0300 |
---|---|---|
committer | dequis <dx@dxzone.com.ar> | 2015-02-20 19:50:54 -0300 |
commit | 5ebff60479fc7a9f7f50ac03b124c91d4e6ebe11 (patch) | |
tree | 9fc0d50cb1f4bc9768d9f00de94eafd876bb55b0 /protocols/oscar/icq.h | |
parent | af359b4316f9d392c6b752495a1b2ed631576ed8 (diff) |
Reindent everything to K&R style with tabs
Used uncrustify, with the configuration file in ./doc/uncrustify.cfg
Commit author set to "Indent <please@skip.me>" so that it's easier to
skip while doing git blame.
Diffstat (limited to 'protocols/oscar/icq.h')
-rw-r--r-- | protocols/oscar/icq.h | 94 |
1 files changed, 47 insertions, 47 deletions
diff --git a/protocols/oscar/icq.h b/protocols/oscar/icq.h index 41b3efb9..009f5913 100644 --- a/protocols/oscar/icq.h +++ b/protocols/oscar/icq.h @@ -7,7 +7,7 @@ * SNAC Family: ICQ * * Most of these are actually special. - */ + */ #define AIM_CB_ICQ_ERROR 0x0001 #define AIM_CB_ICQ_OFFLINEMSG 0x00f0 #define AIM_CB_ICQ_OFFLINEMSGCOMPLETE 0x00f1 @@ -32,61 +32,61 @@ struct aim_icq_simpleinfo { }; struct aim_icq_info { - gushort reqid; + gushort reqid; - /* simple */ - guint32 uin; + /* simple */ + guint32 uin; - /* general and "home" information (0x00c8) */ - char *nick; - char *first; - char *last; - char *email; - char *homecity; - char *homestate; - char *homephone; - char *homefax; - char *homeaddr; - char *mobile; - char *homezip; - gushort homecountry; + /* general and "home" information (0x00c8) */ + char *nick; + char *first; + char *last; + char *email; + char *homecity; + char *homestate; + char *homephone; + char *homefax; + char *homeaddr; + char *mobile; + char *homezip; + gushort homecountry; /* guchar timezone; guchar hideemail; */ - /* personal (0x00dc) */ - guchar age; - guchar unknown; - guchar gender; - char *personalwebpage; - gushort birthyear; - guchar birthmonth; - guchar birthday; - guchar language1; - guchar language2; - guchar language3; + /* personal (0x00dc) */ + guchar age; + guchar unknown; + guchar gender; + char *personalwebpage; + gushort birthyear; + guchar birthmonth; + guchar birthday; + guchar language1; + guchar language2; + guchar language3; - /* work (0x00d2) */ - char *workcity; - char *workstate; - char *workphone; - char *workfax; - char *workaddr; - char *workzip; - gushort workcountry; - char *workcompany; - char *workdivision; - char *workposition; - char *workwebpage; + /* work (0x00d2) */ + char *workcity; + char *workstate; + char *workphone; + char *workfax; + char *workaddr; + char *workzip; + gushort workcountry; + char *workcompany; + char *workdivision; + char *workposition; + char *workwebpage; - /* additional personal information (0x00e6) */ - char *info; + /* additional personal information (0x00e6) */ + char *info; - /* email (0x00eb) */ - gushort numaddresses; - char **email2; + /* email (0x00eb) */ + gushort numaddresses; + char **email2; - /* we keep track of these in a linked list because we're 1337 */ - struct aim_icq_info *next; + /* we keep track of these in a linked list because we're 1337 */ + struct aim_icq_info *next; }; |