]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/idx.h
* Agrego idx_get_count e idx_get_at para recuperar los registros
[z.facultad/75.06/emufs.git] / emufs / idx.h
index 40bf53972a93c418dba454e7d8bdd9e516b33151..616df902be27b73d092a2629615f4182ddd8bddf 100644 (file)
@@ -45,8 +45,8 @@
 #define EMUFS_IDX_EXT ".idx"
 
 typedef struct emufs_idx_t {
 #define EMUFS_IDX_EXT ".idx"
 
 typedef struct emufs_idx_t {
-       unsigned long int n_idreg;
-       unsigned long int n_location;
+       unsigned long int id_reg;
+       unsigned long int location;
 } EMUFS_IDX;
 
 FILE* emufs_idx_abrir(EMUFS*, const char*);
 } EMUFS_IDX;
 
 FILE* emufs_idx_abrir(EMUFS*, const char*);
@@ -61,6 +61,10 @@ int emufs_idx_agregar(EMUFS*, EMUFS_BLOCK_ID, EMUFS_REG_ID);
 
 int emufs_idx_borrar(EMUFS*, EMUFS_REG_ID);
 
 
 int emufs_idx_borrar(EMUFS*, EMUFS_REG_ID);
 
+unsigned int emufs_idx_get_count(EMUFS *);
+
+unsigned long emufs_idx_get_id_att(EMUFS *, unsigned int pos);
+
 EMUFS_REG_ID emufs_idx_get_new_id(EMUFS*, int*);
 
 #endif /* _EMUFS_IDX_H */
 EMUFS_REG_ID emufs_idx_get_new_id(EMUFS*, int*);
 
 #endif /* _EMUFS_IDX_H */