Advertisement
Guest User

Untitled

a guest
Nov 30th, 2015
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. if (tipo == FICHERO || tipo == ALL) {
  2. printf("Zonas asignadas mediante mem -mmap:\n");
  3. printf("%12s%9s%7s%16s%3s\n", "DIR", "TAM", "HORA", "FICHERO", "FD");
  4. for (p = listaMem; p; p = siguienteLM(p)) {
  5. if (p->dato.tipo != FICHERO) continue;
  6. printf("->%12p %5d %-10s%s%3d\n", p->dato.dMemoria, (int) p->dato.tam, p->dato.date, p->dato.fichero, p->dato.fd);
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement