attribute.c

来自「运用expat解析XML文件接口C源代码」· C语言 代码 · 共 135 行

C
135
字号
/**
 *
 * @file     attribute.c
 * @author   Aleix Conchillo Flaque <aleix@member.fsf.org>
 * @date     Mon Nov 25, 2002 00:41
 * @brief    SCEW attribute type implementation
 *
 * $Id: attribute.c,v 1.5 2007/02/07 08:02:53 zhongyh Exp $
 *
 * @if copyright
 *
 * Copyright (C) 2002, 2003 Aleix Conchillo Flaque
 *
 * SCEW 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.
 *
 * SCEW 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
 *
 * @endif
 */
#include "types.h"
#include "xattribute.h"

#include "xerror.h"
#include "xelement.h"

#include "str.h"

#include <string.h>


scew_attribute*
scew_attribute_create(XML_Char const* name, XML_Char const* value)
{
    return attribute_create(name, value);
}

void
scew_attribute_free(scew_attribute* attribute)
{
    attribute_free(attribute);
	attribute = NULL;
}

unsigned int
scew_attribute_count(scew_element const* element)
{
    assert(element != NULL);

    return element->attributes->size;
}

scew_attribute*
scew_attribute_next(scew_element const* element,
                    scew_attribute const* attribute)
{
    scew_attribute *next_attribute;

    if (attribute == NULL)
    {
		if (element == NULL)
    	{
            return NULL;
		}
		next_attribute = element->attributes->first;
    }
    else
    {
		next_attribute = attribute->next;
    }

    return next_attribute;
}

scew_attribute*
scew_attribute_by_index(scew_element const* element, unsigned int idx)
{
    return attribute_by_index(element->attributes, idx);
}

scew_attribute*
scew_attribute_by_name(scew_element const* element, XML_Char const* name)
{
    return attribute_by_name(element->attributes, name);
}

XML_Char const*
scew_attribute_name(scew_attribute const* attribute)
{
    assert(attribute != NULL);

    return attribute->name;
}

XML_Char const*
scew_attribute_value(scew_attribute const* attribute)
{
    assert(attribute != NULL);

    return attribute->value;
}

XML_Char const*
scew_attribute_set_name(scew_attribute* attribute, XML_Char const* name)
{
    assert(attribute != NULL);
    assert(name != NULL);

    SCEW_FREE(attribute->name);
    attribute->name = scew_strdup(name);

    return attribute->name;
}

XML_Char const*
scew_attribute_set_value(scew_attribute* attribute, XML_Char const* value)
{
    assert(attribute != NULL);
    assert(value != NULL);

    SCEW_FREE(attribute->value);
    attribute->value = scew_strdup(value);

    return attribute->value;
}

⌨️ 快捷键说明

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