]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - tipo3/param_cte.h
* BUGFIX : inicializo una variabla en buscar_lugar para que el resultado sea correcto.
[z.facultad/75.06/emufs.git] / tipo3 / param_cte.h
1 #ifndef _PARAM_CTE_H_
2 #define _PARAM_CTE_H_
3 #include <stdio.h>
4 #include <stdlib.h>
5 #include <string.h>
6 #include "emufs.h"
7
8
9 typedef struct block_free_t{
10         int block;
11         int free_space;
12 }BLOCK_FREE_T;
13
14 typedef struct block_reg_t{
15         int block;
16         int id_reg;
17 }BLOCK_REG_T;
18
19 int leer_registro(EMUFS *emu, int ID, void *, unsigned long tam);
20
21 int leer_bloque(EMUFS *emu, int ID, void *);
22
23 int grabar_registro(EMUFS *emu, void *, unsigned long tam);
24
25 int existe_registro(EMUFS *emu, int ID);
26
27 int buscar_registro(EMUFS *emu, int ID);
28
29 int buscar_lugar(EMUFS *emu, unsigned long tam, int *fs);
30
31 int get_id(EMUFS *emu);
32
33 int grabar_bloque(EMUFS *emu, void *ptr, int num);
34 #endif