/* -*- Mode: C; indent-tabs-mode:nil; c-basic-offset: 8-*- */
/*
* This file is part of The Croco Library
*
* modify it under the terms of version 2.1 of the GNU Lesser General Public
* License as published by the Free Software Foundation.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*
* Author: Dodji Seketeli
* See COPYRIGHTS file for copyright information.
*/
#include "cr-pseudo.h"
/**
*@CRPseudo:
*The definition of the #CRPseudo class.
*/
/**
* cr_pseudo_new:
*Constructor of the #CRPseudo class.
*
*Returns the newly build instance.
*/
CRPseudo *
cr_pseudo_new (void)
{
return result;
}
/**
* cr_pseudo_to_string:
* @a_this: the current instance of #CRPseud.
*
* Returns the serialized pseudo. Caller must free the returned
* string using g_free().
*/
guchar *
{
goto error;
}
if (name) {
}
goto error;
}
if (name) {
if (arg) {
}
}
}
if (str_buf) {
}
return result;
return NULL;
}
/**
* cr_pseudo_dump:
*@a_this: the current instance of pseudo
*@a_fp: the destination file pointer.
*
*Dumps the pseudo to a file.
*
*/
void
{
if (a_this) {
if (tmp_str) {
}
}
}
/**
* cr_pseudo_destroy:
*@a_this: the current instance to destroy.
*
*destructor of the #CRPseudo class.
*/
void
{
}
}
}