Annotation of DOM/AttributeList.c, revision 1.1

1.1     ! daniel      1: /*
        !             2:  * AttributeList.c : implementation of the AttributeList interface as defined by
        !             3:  *       Document Object Model (Core) Level 1
        !             4:  *       http://www.w3.org/TR/WD-DOM/level-one-core.html
        !             5:  * 
        !             6:  * Daniel.Veillard@w3.org
        !             7:  *
        !             8:  * $Id$
        !             9:  */
        !            10: 
        !            11: #include "config.h"
        !            12: #include <stdio.h>
        !            13: #include "AttributeList.h"
        !            14: 

Webmaster