⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nxml_easy.c

📁 libnxml-no-curl-简化版2007-07-01,一个别很不错的XML生成和解析程序。
💻 C
字号:
/* nXml - Copyright (C) 2005 bakunin - Andrea Marchesini  *                                <bakunin@autistici.org> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. *  * This library 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 * Lesser General Public License for more details. *  * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */#ifdef HAVE_CONFIG_H#include <config.h>#else# error Use configure; make; make install#endif#include "nxml.h"#include "nxml_internal.h"/*nxml_t *nxmle_new_data (nxml_error_t * err){  nxml_t *data = NULL;  nxml_error_t ret;  ret = nxml_new (&data);  if (err)    *err = ret;  if (ret != NXML_OK)    return NULL;  return data;}*//*nxml_t *nxmle_new_data_from_url (char *url, nxml_error_t * err){  nxml_t *data = NULL;  nxml_error_t ret;  ret = nxml_new (&data);  if (err)    *err = ret;  if (ret != NXML_OK)    return NULL;  nxml_set_func (data, nxml_print_generic);  ret = nxml_parse_url (data, url);  if (err)    *err = ret;  if (ret != NXML_OK)    {      nxml_free (data);      return NULL;    }  return data;}*//*nxml_t *nxmle_new_data_from_file (char *file, nxml_error_t * err){  nxml_t *data = NULL;  nxml_error_t ret;  ret = nxml_new (&data);  if (err)    *err = ret;  if (ret != NXML_OK)    return NULL;  nxml_set_func (data, nxml_print_generic);  ret = nxml_parse_file (data, file);  if (err)    *err = ret;  if (ret != NXML_OK)    {      nxml_free (data);      return NULL;    }  return data;}*//*nxml_t *nxmle_new_data_from_buffer (char *buffer, size_t size, nxml_error_t * err){  nxml_t *data = NULL;  nxml_error_t ret;  ret = nxml_new (&data);  if (err)    *err = ret;  if (ret != NXML_OK)    return NULL;  nxml_set_func (data, nxml_print_generic);  ret = nxml_parse_buffer (data, buffer, size);  if (err)    *err = ret;  if (ret != NXML_OK)    {      nxml_free (data);      return NULL;    }  return data;}*//*nxml_data_t *nxmle_add_new (nxml_t * nxml, nxml_data_t * parent, nxml_error_t * err){  nxml_error_t ret;  nxml_data_t *child = NULL;  ret = nxml_add (nxml, parent, &child);  if (err)    *err = ret;  if (ret != NXML_OK)    return NULL;  return child;}*//*nxml_data_t *nxmle_add_data (nxml_t * nxml, nxml_data_t * parent, nxml_data_t * child,		nxml_error_t * err){  nxml_error_t ret;  if (!child)    {      if (err)	*err = NXML_ERR_DATA;      return NULL;    }  ret = nxml_add(nxml, parent, &child);  if (err)    *err = ret;  if (ret != NXML_OK)    return NULL;  return child;}*//*nxml_attr_t *nxmle_add_attribute_new (nxml_t * nxml, nxml_data_t * element,			 nxml_error_t * err){  nxml_error_t ret;  nxml_attr_t *attribute = NULL;  ret = nxml_add_attribute (nxml, element, &attribute);  if (err)    *err = ret;  if (ret != NXML_OK)    return NULL;  return attribute;}*//*nxml_attr_t *nxmle_add_attribute_data (nxml_t * nxml, nxml_data_t * element,			  nxml_attr_t * attribute, nxml_error_t * err){  nxml_error_t ret;  if (!attribute)    {      if (err)	*err = NXML_ERR_DATA;      return NULL;    }  ret = nxml_add_attribute (nxml, element, &attribute);  if (err)    *err = ret;  if (ret != NXML_OK)    return NULL;  return attribute;}*//*nxml_namespace_t *nxmle_add_namespace_new (nxml_t * nxml, nxml_data_t * element,			 nxml_error_t * err){  nxml_error_t ret;  nxml_namespace_t *namespace = NULL;  ret = nxml_add_namespace (nxml, element, &namespace);  if (err)    *err = ret;  if (ret != NXML_OK)    return NULL;  return namespace;}*//*nxml_namespace_t *nxmle_add_namespace_data (nxml_t * nxml, nxml_data_t * element,			  nxml_namespace_t * namespace, nxml_error_t * err){  nxml_error_t ret;  if (!namespace)    {      if (err)	*err = NXML_ERR_DATA;      return NULL;    }  ret = nxml_add_namespace (nxml, element, &namespace);  if (err)    *err = ret;  if (ret != NXML_OK)    return NULL;  return namespace;}*/nxml_data_t *nxmle_root_element (nxml_t * nxml, nxml_error_t * err){  nxml_data_t *root;  nxml_error_t ret;  ret = nxml_root_element (nxml, &root);  if (err)    *err = ret;  if (ret != NXML_OK)    return NULL;  return root;}/*nxml_doctype_t *nxmle_doctype_element (nxml_t * nxml, nxml_error_t * err){  nxml_doctype_t *doctype;  nxml_error_t ret;  ret = nxml_doctype_element (nxml, &doctype);  if (err)    *err = ret;  if (ret != NXML_OK)    return NULL;  return doctype;}*//*nxml_data_t *nxmle_find_element (nxml_t * nxml, nxml_data_t * data, char *name,		    nxml_error_t * err){  nxml_data_t *element;  nxml_error_t ret;  ret = nxml_find_element (nxml, data, name, &element);  if (err)    *err = ret;  if (ret != NXML_OK)    return NULL;  return element;}*/char *nxmle_find_attribute (nxml_data_t * data, char *name, nxml_error_t * err){  nxml_attr_t *attribute;  nxml_error_t ret;  char *str;  ret = nxml_find_attribute (data, name, &attribute);  if (err)    *err = ret;  if (ret != NXML_OK)    return NULL;  if (!attribute)    return NULL;  str = strdup (attribute->value);  if (!str)    {      if (err)	*err = NXML_ERR_POSIX;      return NULL;    }  return str;}/*char *nxmle_find_namespace (nxml_data_t * data, char *name, nxml_error_t * err){  nxml_namespace_t *namespace;  nxml_error_t ret;  char *str;  ret = nxml_find_namespace (data, name, &namespace);  if (err)    *err = ret;  if (ret != NXML_OK)    return NULL;  if (!namespace)    return NULL;  str = strdup (namespace->ns);  if (!str)    {      if (err)	*err = NXML_ERR_POSIX;      return NULL;    }  return str;}*//*char *nxmle_get_string (nxml_data_t * data, nxml_error_t * err){  nxml_error_t ret;  char *str = NULL;  ret = nxml_get_string (data, &str);  if (err)    *err = ret;  if (ret != NXML_OK)    return NULL;  return str;}*//*char *nxmle_write_buffer (nxml_t * nxml, nxml_error_t * err){  char *buffer;  nxml_error_t ret;  buffer = NULL;  ret = nxml_write_buffer (nxml, &buffer);  if (err)    *err = ret;  if (ret != NXML_OK)    return NULL;  return buffer;}*//*intnxmle_line_error (nxml_t * nxml, nxml_error_t * err){  int line;  nxml_error_t ret;  ret = nxml_line_error (nxml, &line);  if (err)    *err = ret;  return line;}*//* EOF */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -