"SfR Fresh" - the SfR Freeware/Shareware Archive 
Member "ocre-0.029/id3/arbid.h" of archive ocre_v0_029.tgz:
As a special service "SfR Fresh" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting with prefixed line numbers.
Alternatively you can here view or download the uninterpreted source code file.
That can be also achieved for any archive member file by clicking within an archive contents listing on the first character of the file(path) respectively on the according byte size field.
1
2 #ifndef ARB_ID
3 #define ARB_ID
4 enum {nd_falso, nd_cierto, nd_nose, nd_segun};
5
6 typedef struct tnodo{
7 int tiponodo;
8 int variable;
9 int umbral;
10 struct tnodo *menor, *mayorIgual;
11 } * tpnodo, * tparbol;
12 #endif
13
14 /* typedef tnodo * ptnodo; */
15
16 tpnodo creaNodo (int clNodo,
17 int variable,
18 int umbral,
19 tpnodo menor,
20 tpnodo mayorIgual);
21
22 void escribeArbol (char * nomFich, tpnodo arbol);
23
24 void escribeSeArbolTexto (tpnodo arbol);
25
26 tpnodo leeArbol (char * nomFich);
27
28 void anadeNodoHMenor (tpnodo np, tpnodo nh);
29 void anadeNodoHMayorI (tpnodo np, tpnodo nh);
30
31 int evalArbolVector (tpnodo arb, int v[]);
32
33 void destruyeArbol (tpnodo nodo);