1 /* vim: set noexpandtab tabstop=4 shiftwidth=4:
2 *----------------------------------------------------------------------------
4 *----------------------------------------------------------------------------
5 * This file is part of emufs.
7 * emufs is free software; you can redistribute it and/or modify it under the
8 * terms of the GNU General Public License as published by the Free Software
9 * Foundation; either version 2 of the License, or (at your option) any later
12 * emufs is distributed in the hope that it will be useful, but WITHOUT ANY
13 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
17 * You should have received a copy of the GNU General Public License along
18 * with emufs; if not, write to the Free Software Foundation, Inc., 59 Temple
19 * Place, Suite 330, Boston, MA 02111-1307 USA
20 *----------------------------------------------------------------------------
21 * Creado: Fri Apr 09 18:24:00 ART 2004
22 * Autores: Alan Kennedy <kennedya@3dgames.com.ar>
23 *----------------------------------------------------------------------------
27 /****************************/
28 /* Prueba de archivo TIPO 2 */
29 /****************************/
35 int main(int argc, char *argv[])
38 EMUFS_REG_ID n1, n2, n3, n4, n5, n6, n7, n8;
49 strcpy(a, "1234567890");
50 strcpy(b, "REGISTRO NUMERO 2. ESTE REGISTRO ES MUCHO MAS LARGO QUE EL UNO");
51 strcpy(c, "ABCDEFGHIJKL");
53 strcpy(e, "HOLA soy un registro nuevo, me llamo E");
54 strcpy(f, "yo soy F");
55 strcpy(g, "me llamo G y quiero estar en el bloque 1");
56 strcpy(h, "un registro nuevo que se llama H, acompania a G en el bloque 1");
57 strcpy(i, "me argrego despues de borrar a un registro");
59 /* Creamos el archivo Tipo 2. Pasamos blocksize = 0 y Regsize = 0 pues estar */
61 fp = emufs_crear("articulos", T2, 0, 0);
63 /* Grabamos un par de registros */
64 n1 = fp->grabar_registro(fp, a, 11);
65 n2 = fp->grabar_registro(fp, b, 63);
66 n3 = fp->grabar_registro(fp, c, 13);
67 n4 = fp->grabar_registro(fp, d, 8);
68 n5 = fp->grabar_registro(fp, e, 39);
69 n6 = fp->grabar_registro(fp, f, 9);
70 n7 = fp->grabar_registro(fp, g, 41);
71 n8 = fp->grabar_registro(fp, h, 63);
73 /* Borramos un registro del medio */
74 printf("tipo2_main.c >> Borrando registro: %lu\n",n4);
75 fp->borrar_registro(fp, 54);
76 /*n8 = fp->grabar_registro(fp, i, 100);
77 fp->leer_registro(fp, n8, b, 100);
79 printf("Recuperado : %s\n", b);