summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
ebffcef)
* Desquiebro una funcion
* Agrego warp a las opciones del vim para aquellos que no les gusta scrollear
-/* vim: set noexpandtab tabstop=4 shiftwidth=4:
+/* vim: set noexpandtab tabstop=4 shiftwidth=4 wrap:
*----------------------------------------------------------------------------
* emufs
*----------------------------------------------------------------------------
*----------------------------------------------------------------------------
* emufs
*----------------------------------------------------------------------------
T1, /**< Archivo de bloque parametrizado y registro variable. */
T2, /**< Archivo sin bloques y registros variables. */
T3 /**< Archivo de bloque parametrizado y registro fijo. */
T1, /**< Archivo de bloque parametrizado y registro variable. */
T2, /**< Archivo sin bloques y registros variables. */
T3 /**< Archivo de bloque parametrizado y registro fijo. */
/** Tipo de identificador de registro. */
typedef unsigned long EMUFS_REG_ID;
/** Tipo de identificador de registro. */
typedef unsigned long EMUFS_REG_ID;
* para llamar al método correspondiente a cada tipo de archivo.
*/
typedef struct _emu_fs_t {
* para llamar al método correspondiente a cada tipo de archivo.
*/
typedef struct _emu_fs_t {
EMUFS_BLOCK_SIZE tam_bloque; /**< Tamaño de bloque. 0 Si no tiene bloques */
EMUFS_REG_SIZE tam_reg; /**< Tamaño de registro. 0 Si son registros variables */
void* (*leer_bloque)(struct _emu_fs_t*, EMUFS_BLOCK_ID, int*); /**< Método para leer un bloque */
EMUFS_BLOCK_SIZE tam_bloque; /**< Tamaño de bloque. 0 Si no tiene bloques */
EMUFS_REG_SIZE tam_reg; /**< Tamaño de registro. 0 Si son registros variables */
void* (*leer_bloque)(struct _emu_fs_t*, EMUFS_BLOCK_ID, int*); /**< Método para leer un bloque */
* \param tam_bloque Tamaño del bloque.
* \param tam_reg Tamaño del registro.
*/
* \param tam_bloque Tamaño del bloque.
* \param tam_reg Tamaño del registro.
*/
-EMUFS *emufs_crear(const char *filename, EMUFS_TYPE tipo,
- EMUFS_BLOCK_SIZE tam_bloque, EMUFS_REG_SIZE tam_reg);
+EMUFS *emufs_crear(const char *filename, EMUFS_TYPE tipo,EMUFS_BLOCK_SIZE tam_bloque, EMUFS_REG_SIZE tam_reg);
/** Abre un archivo EMUFS.
*
/** Abre un archivo EMUFS.
*