xtag.h
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:2k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * xlist.h : a trivial parser for XML-like tags (header file)
  3.  *****************************************************************************
  4.  * Copyright (C) 2003-2004 Commonwealth Scientific and Industrial Research
  5.  *                         Organisation (CSIRO) Australia
  6.  * Copyright (C) 2000-2004 VideoLAN
  7.  *
  8.  * $Id: xtag.h 7397 2004-04-20 17:27:30Z sam $
  9.  *
  10.  * Authors: Conrad Parker <Conrad.Parker@csiro.au>
  11.  *          Andre Pang <Andre.Pang@csiro.au>
  12.  *
  13.  * This program is free software; you can redistribute it and/or modify
  14.  * it under the terms of the GNU General Public License as published by
  15.  * the Free Software Foundation; either version 2 of the License, or
  16.  * (at your option) any later version.
  17.  *
  18.  * This program is distributed in the hope that it will be useful,
  19.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.  * GNU General Public License for more details.
  22.  *
  23.  * You should have received a copy of the GNU General Public License
  24.  * along with this program; if not, write to the Free Software
  25.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  26.  *****************************************************************************/
  27. #ifndef __XTAG_H__
  28. #define __XTAG_H__
  29. typedef void XTag;
  30. XTag * xtag_new_parse (const char * s, int n);
  31. char * xtag_get_name (XTag * xtag);
  32. char * xtag_get_pcdata (XTag * xtag);
  33. char * xtag_get_attribute (XTag * xtag, char * attribute);
  34. XTag * xtag_first_child (XTag * xtag, char * name);
  35. XTag * xtag_next_child (XTag * xtag, char * name);
  36. XTag * xtag_free (XTag * xtag);
  37. int xtag_snprint (char * buf, int n, XTag * xtag);
  38. #endif /* __XTAG_H__ */