]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/idx.h
no encuentro el error, el archivo idx en vez de achicarse crece.... fijense si lo...
[z.facultad/75.06/emufs.git] / emufs / idx.h
index a2c9736946cf1fe108a87d8421d23a99f0c373de..4dfba88acd068c8fa193c1445590c4f624cc3be6 100644 (file)
@@ -20,6 +20,7 @@
  *----------------------------------------------------------------------------
  * Creado:  jue abr  8 18:11:46 ART 2004
  * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
+ *          Leandro Lucarella <llucare@fi.uba.ar>
  *----------------------------------------------------------------------------
  *
  * $Id$
  *
  */
 
-#ifndef _IDX_H
-#define _IDX_H
+#ifndef _EMUFS_IDX_H
+#define _EMUFS_IDX_H
 
 #include <string.h>
+#include <unistd.h>
 #include "emufs.h"
 
+#define EMUFS_IDX_EXT ".idx"
+
+typedef struct emufs_idx_t {
+       int block;
+       long int id_reg;
+} EMUFS_IDX;
+
+FILE* emufs_idx_abrir(EMUFS*, const char*);
+
+int emufs_idx_crear(EMUFS*);
+
 int emufs_idx_buscar_mayor_id(EMUFS *);
 
 int emufs_idx_buscar_registro(EMUFS *, int);
 
 int emufs_idx_agregar(EMUFS *, int , int);
 
-#endif /* _IDX_H */
+int emufs_idx_borrar(EMUFS *emu, int ID);
+
+#endif /* _EMUFS_IDX_H */