"SfR Fresh" - the SfR Freeware/Shareware Archive

Member "ocre-0.029/id3/arbolesid3.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 #include "arbid.h"
    3 
    4 #ifndef ARBOLES_ID3
    5 #define ARBOLES_ID3
    6       /* lista de arboles: con nombre, numero,ç
    7          (puntero a) array de arboles, y (puntero a) siguiente */
    8 typedef struct tlarboles{
    9   char * nombre;
   10   int num;
   11   tpnodo * larb;
   12   struct tlarboles * next;
   13   } * tplarboles;
   14 
   15 tplarboles llarboles;
   16 
   17 typedef struct tpropues{
   18   char * nombre;
   19   int narb;
   20   int res[3];
   21   } * tppropues;
   22 #endif
   23 
   24 void leeArbolesN (tplarboles * nllarboles, char * dir);
   25 
   26 void leeArboles (char * dir);
   27 
   28 void escribeArboles (char * dir, char * nomc, int nar);
   29 
   30 void escribeArbolesO (char * dir, char ** nomc, int nnomc, char *cs, int nar);
   31 
   32 void evaluaConArbolesN (tplarboles nllarboles, char * nomCar, int v[], int res[]);
   33 
   34 void evaluaConArboles (char * nomCar, int v[], int res[]);
   35 
   36 void clasificaConArbolesN (tplarboles nllarboles,
   37                            int v[], tppropues lprop, int npp, int * pnprp,
   38 			   float umbrValProp);
   39 
   40 void clasificaConArboles (int v[], tppropues lprop, int npp, int * pnprp);
   41