blob: e54a444045f7fde5de14b9fdcc4df1ffc4e2d26a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/*
* Ivy, C interface
*
* Copyright (C) 1997-2000
* Centre d'Études de la Navigation Aérienne
*
* Argument message comtent
*
* Authors: François-Régis Colin <fcolin@cena.fr>
*
* $Id$
*
* Please refer to file version.h for the
* copyright notice regarding this software
*/
/* Module de gestion de la syntaxe des messages Ivy */
typedef struct _argument *IvyArgument;
IvyArgument IvyArgumentNew( const char * expression );
void IvyArgumentFree( IvyArgument arg );
const char * IvyArgumentGetValue( IvyArgument arg );
IvyArgument IvyArgumentGetNextChild( IvyArgument arg );
IvyArgument IvyAddChild( IvyArgument arg, const char* childvalue );
IvyArgument IvyArgumentDeserialize( int fd );
void IvyArgumentSerialize(IvyArgument arg, int fd );
|