Rešenja Zadataka Za Treći Kolokvijum Iz Operativnih Sistema 1 Jun 2017
Rešenja Zadataka Za Treći Kolokvijum Iz Operativnih Sistema 1 Jun 2017
Rešenja Zadataka Za Treći Kolokvijum Iz Operativnih Sistema 1 Jun 2017
b)(5) txt
3. (10 poena)
void truncate (FCB* fcb) {
if (fcb==0) return;
unsigned long cur=fcb->head, next;
while (cur) {
next = fat[cur];
fat[cur] = -1;
cur = next;
}
fcb->head = 0;
fcb->size = 0;
}
1/1