int main(int argc, char* argv[]) {
EMUFS* efs;
- char registro1[5];
- char registro2[6];
if (argc < 2) {
printf("Faltan argumentos! %s [nombre]\n", argv[0]);
return 1;
return 1;
}
- if (efs->leer_registro(efs, 0, registro1) == -1) {
- printf("No se pudo leer el registro 1.\n");
- return 1;
- }
- registro1[4] = '\0';
- printf("Registro 1: %s\n", registro1);
-
/*
if (efs->leer_registro(efs, 1, registro2, 5) == -1) {
printf("No se pudo leer el registro 2.\n");