comparison libfaim/aim_util.c @ 283:0f14e6d8a51b

[gaim-migrate @ 293] - Good fun things here. Sometimes I think Adam does things just to make it difficult for me, I swear (j/k :) ). - I moved all the .h files into the faim/ directory because I'm tired of changing faim/aim.h to just aim.h every time Adam makes an update. - libfaim can now send messages much longer than WinAIM or TOC can. But, the length checking code is still in conversation.c, and I haven't changed it yet, mostly because I'm lazy. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Wed, 31 May 2000 03:20:11 +0000
parents 6ced2f1c8b24
children 595ac7759563
comparison
equal deleted inserted replaced
282:918db59d3814 283:0f14e6d8a51b
2 * 2 *
3 * 3 *
4 * 4 *
5 */ 5 */
6 6
7 #include <aim.h> 7 #include <faim/aim.h>
8 #include <ctype.h> 8 #include <ctype.h>
9 9
10 #define AIMUTIL_USEMACROS 10 #define AIMUTIL_USEMACROS
11 11
12 #ifdef AIMUTIL_USEMACROS 12 #ifdef AIMUTIL_USEMACROS
13 /* macros in aim.h */ 13 /* macros in faim/aim.h */
14 #else 14 #else
15 inline int aimutil_put8(u_char *buf, u_char data) 15 inline int aimutil_put8(u_char *buf, u_char data)
16 { 16 {
17 buf[0] = (u_char)data&0xff; 17 buf[0] = (u_char)data&0xff;
18 return 1; 18 return 1;