purple: fix possible gsize vs. size_t incompatibilty
[siplcs.git] / src / purple / tests.c
blob8190270bfbbf442828d6af95dc42027d5a37ead1
1 /**
2 * @file tests.c
4 * pidgin-sipe
6 * Copyright (C) 2010 pier11 <pier11@operamail.com>
7 * Copyright (C) 2008 Novell, Inc.
9 * Implemented with reference to the follow documentation:
10 * - http://davenport.sourceforge.net/ntlm.html
11 * - MS-NLMP: http://msdn.microsoft.com/en-us/library/cc207842.aspx
12 * - MS-SIP : http://msdn.microsoft.com/en-us/library/cc246115.aspx
14 * Please use "make tests" to build & run them!
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 2 of the License, or
19 * (at your option) any later version.
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software
28 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
31 #include <glib.h>
33 #include "cipher.h"
34 #include "debug.h"
35 #include "signals.h"
37 gboolean sip_sec_ntlm_tests(void);
39 int main()
41 /* Initialization that libpurple/core.c would normally do */
42 purple_signals_init();
43 purple_debug_init();
44 purple_debug_set_enabled(TRUE);
45 purple_ciphers_init();
47 /* Run tests */
48 return(sip_sec_ntlm_tests() ? 0 : 1);
52 Local Variables:
53 mode: c
54 c-file-style: "bsd"
55 indent-tabs-mode: t
56 tab-width: 8
57 End: