Blame lib/minitasn1/structure.h

Packit 549fdc
/*
Packit 549fdc
 * Copyright (C) 2002-2014 Free Software Foundation, Inc.
Packit 549fdc
 *
Packit 549fdc
 * This file is part of LIBTASN1.
Packit 549fdc
 *
Packit 549fdc
 * The LIBTASN1 library is free software; you can redistribute it
Packit 549fdc
 * and/or modify it under the terms of the GNU Lesser General Public
Packit 549fdc
 * License as published by the Free Software Foundation; either
Packit 549fdc
 * version 2.1 of the License, or (at your option) any later version.
Packit 549fdc
 *
Packit 549fdc
 * This library is distributed in the hope that it will be useful, but
Packit 549fdc
 * WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 549fdc
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 549fdc
 * Lesser General Public License for more details.
Packit 549fdc
 *
Packit 549fdc
 * You should have received a copy of the GNU Lesser General Public
Packit 549fdc
 * License along with this library; if not, write to the Free Software
Packit 549fdc
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
Packit 549fdc
 * 02110-1301, USA
Packit 549fdc
 */
Packit 549fdc
Packit 549fdc
/*************************************************/
Packit 549fdc
/* File: structure.h                             */
Packit 549fdc
/* Description: list of exported object by       */
Packit 549fdc
/*   "structure.c"                               */
Packit 549fdc
/*************************************************/
Packit 549fdc
Packit 549fdc
#ifndef _STRUCTURE_H
Packit 549fdc
#define _STRUCTURE_H
Packit 549fdc
Packit 549fdc
int _asn1_create_static_structure (asn1_node pointer,
Packit 549fdc
				   char *output_file_name, char *vector_name);
Packit 549fdc
Packit 549fdc
asn1_node _asn1_copy_structure3 (asn1_node source_node);
Packit 549fdc
Packit 549fdc
asn1_node _asn1_add_single_node (unsigned int type);
Packit 549fdc
Packit 549fdc
asn1_node _asn1_find_left (asn1_node node);
Packit 549fdc
Packit 549fdc
#endif