From 6bc35231434a6cc253034b3c65d438a04b75640d Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Wed, 3 Dec 2003 04:26:30 +0000 Subject: [PATCH] Prelim changes to mxmldoc; think I'll be revamping the code parser completely... --- documentation.html | 59 ++++++++++++++++++++++++++++++++++++++++++++++ mxml.xml | 11 ++++++++- mxmldoc.c | 20 +++++++++++++--- 3 files changed, 86 insertions(+), 4 deletions(-) diff --git a/documentation.html b/documentation.html index 5ed7daf..2b2443d 100644 --- a/documentation.html +++ b/documentation.html @@ -16,6 +16,7 @@
  • Structures
  • Types
  • Unions
  • +
  • Variables

  • Enumerations

    @@ -37,6 +38,7 @@

    Functions

    +

    calloc()

    +

    +

    Syntax

    +
    +if((node
    +calloc(
    +    sizeof(mxml_node_t))) NULL);
    +
    +

    Arguments

    +

    + + + +
    NameDescription
    NULL

    +

    Returns

    +

    mxmlAdd()

    Add a node to a tree. @@ -683,6 +702,22 @@ mxmlWalkPrev(

    Returns

    Previous node or NULL

    +

    realloc()

    +

    Current buffer size

    +

    Syntax

    +
    +if((newbuffer
    +realloc(
    +    buffer, *bufsize)) NULL);
    +
    +

    Arguments

    +

    + + + +
    NameDescription
    NULL

    +

    Returns

    +

    Increase the size of the buffer...


    Structures