/* * libyahoo2: libyahoo2.c * * Some code copyright (C) 2002, Philip S Tellis * * Much of this code was taken and adapted from the yahoo module for * pidgin released under the GNU GPL. This code is also released under the * GNU GPL. * * This code is derivitive of Pidgin * copyright (C) 1998-1999, Mark Spencer * 1998-1999, Adam Fritzler * 1998-2002, Rob Flynn * 2000-2002, Eric Warmenhoven * 2001-2002, Brian Macke * 2001, Anand Biligiri S * 2001, Valdis Kletnieks * 2002, Sean Egan * 2002, Toby Gray * * This library also uses code from other libraries, namely: * Portions from libfaim copyright 1998, 1999 Adam Fritzler * * Portions of Sylpheed copyright 2000-2002 Hiroyuki Yamamoto * * * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * */ #ifndef LIB_YAHOO_UTILS_H #define LIB_YAHOO_UTILS_H #ifndef MIN #define MIN(x,y) ((x)<(y)?(x):(y)) #endif #ifndef MAX #define MAX(x,y) ((x)>(y)?(x):(y)) #endif #define FREE(x) if(x) {free(x); x=NULL;} void authresp_0x0b(const char *seed, const char *sn, const char *password, char *resp_6, char *resp_96 ); void yahooBase64(unsigned char *out, const unsigned char *in, int inlen); char * getlcookie(const char *cookie); char * getcookie(const char *rawcookie); #endif