]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/fsc.h
* Bugfix en tipo1 leer_raw que se estaba usando una variable
[z.facultad/75.06/emufs.git] / emufs / fsc.h
index e331b1808f59bff87eaeab7ed21646528995bd33..27ee1cc7fce201a508a59aaf467a5a4e91c58c5e 100644 (file)
@@ -45,7 +45,7 @@
 typedef struct emufs_fsc_t {
        unsigned long int marker;
        unsigned long int freespace;
-}EMUFS_FSC;
+} EMUFS_FSC;
 
 int emufs_fsc_crear(EMUFS*);
 int emufs_fsc_agregar(EMUFS *, EMUFS_BLOCK_ID, EMUFS_FREE);
@@ -55,8 +55,8 @@ int emufs_fsc_actualizar_gap(EMUFS *, EMUFS_OFFSET, EMUFS_FREE);
 int emufs_fsc_actualizar(EMUFS *, EMUFS_BLOCK_ID, EMUFS_FREE);
 EMUFS_BLOCK_ID emufs_fsc_buscar_lugar(EMUFS *, EMUFS_FREE, EMUFS_FREE *);
 EMUFS_FREE emufs_fsc_get_fs(EMUFS *, EMUFS_BLOCK_ID);
-/*Devuelve el total de espacio libre que queda en el .dat*/
 EMUFS_FREE emufs_fsc_get_total_fs(EMUFS *);
-/*EMUFS_FREE emufs_fsc_get_max_min_fs(EMUFS *, int *, int *);*/
+EMUFS_FREE emufs_fsc_get_media_fs(EMUFS *);
+int emufs_fsc_get_max_min_fs(EMUFS *, EMUFS_FREE *, EMUFS_FREE *);
 
 #endif /* _EMUFS_FSC_H */