X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/38825f06cdb5f35c624047e3dc84ee190775a142..71026445ea6cd499c9f8d194ddbdc9607665a719:/emufs/tipo1.c diff --git a/emufs/tipo1.c b/emufs/tipo1.c index ca413f2..5d8dfff 100644 --- a/emufs/tipo1.c +++ b/emufs/tipo1.c @@ -68,6 +68,13 @@ static void emufs_tipo1_escribir_reg_en_memoria(char*, EMUFS_TIPO1_REG_HEADER, static void emufs_tipo1_escribir_reg_chunk_en_memoria(char* dst, EMUFS_TIPO1_REG_HEADER header, char* reg, EMUFS_REG_SIZE reg_size); +/** Lee el bloque \param num_bloque y lo almacena en \c ptr. */ +static void* emufs_tipo1_leer_bloque(EMUFS*, EMUFS_BLOCK_ID, int*); + +/** Graba el bloque apuntado por \c ptr en el archivo. */ +static EMUFS_BLOCK_ID emufs_tipo1_grabar_bloque(EMUFS*, void*, EMUFS_BLOCK_ID, + int*); + /*------------------ Funciones públicas ----------------------*/ int emufs_tipo1_inicializar(EMUFS* efs)