Frameworks/libpurple.framework/Versions/0.5.6/Headers/jutil.h
branchadium-1.3
changeset 350 708bedafdc3a
parent 349 17ef128722b7
child 351 b01ab9b157f9
     1.1 --- a/Frameworks/libpurple.framework/Versions/0.5.6/Headers/jutil.h	Sun Jun 21 22:04:11 2009 -0400
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,46 +0,0 @@
     1.4 -/**
     1.5 - * @file jutil.h utility functions
     1.6 - *
     1.7 - * purple
     1.8 - *
     1.9 - * Copyright (C) 2003 Nathan Walp <faceprint@faceprint.com>
    1.10 - *
    1.11 - * This program is free software; you can redistribute it and/or modify
    1.12 - * it under the terms of the GNU General Public License as published by
    1.13 - * the Free Software Foundation; either version 2 of the License, or
    1.14 - * (at your option) any later version.
    1.15 - *
    1.16 - * This program is distributed in the hope that it will be useful,
    1.17 - * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.18 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.19 - * GNU General Public License for more details.
    1.20 - *
    1.21 - * You should have received a copy of the GNU General Public License
    1.22 - * along with this program; if not, write to the Free Software
    1.23 - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
    1.24 - */
    1.25 -#ifndef _PURPLE_JABBER_JUTIL_H_
    1.26 -#define _PURPLE_JABBER_JUTIL_H_
    1.27 -
    1.28 -typedef struct _JabberID {
    1.29 -	char *node;
    1.30 -	char *domain;
    1.31 -	char *resource;
    1.32 -} JabberID;
    1.33 -
    1.34 -JabberID* jabber_id_new(const char *str);
    1.35 -void jabber_id_free(JabberID *jid);
    1.36 -
    1.37 -char *jabber_get_resource(const char *jid);
    1.38 -char *jabber_get_bare_jid(const char *jid);
    1.39 -
    1.40 -const char *jabber_normalize(const PurpleAccount *account, const char *in);
    1.41 -
    1.42 -gboolean jabber_nodeprep_validate(const char *);
    1.43 -gboolean jabber_nameprep_validate(const char *);
    1.44 -gboolean jabber_resourceprep_validate(const char *);
    1.45 -
    1.46 -PurpleConversation *jabber_find_unnormalized_conv(const char *name, PurpleAccount *account);
    1.47 -
    1.48 -char *jabber_calculate_data_sha1sum(gconstpointer data, size_t len);
    1.49 -#endif /* _PURPLE_JABBER_JUTIL_H_ */