X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/8a6f628c163936c6f0852c398694f2d5fc946c37..8190084c46a37139904c2a0114a2d3020f48282a:/tipo3/main.c diff --git a/tipo3/main.c b/tipo3/main.c index b6e0579..0e38cc5 100644 --- a/tipo3/main.c +++ b/tipo3/main.c @@ -6,10 +6,19 @@ int main() { EMUFS *fp; char a[] = "1234567890"; + int n; + char b[101]; fp = emufs_crear("articulos", T3, 512, 100); - fp->grabar_registro(fp, a, strlen(a)+1); + n = fp->grabar_registro(fp, a, strlen(a)+1); + + printf("ID = %d\n", n); + + fp->leer_registro(fp, n, b, 20); + + printf("Ok\n"); + printf("Recuperado : %s\n", b); emufs_destruir(fp); return 0;