Exemple #1
0
/**
 * Mengatur Allocation Table
 * @param position pointer blok
 * @param next     pointer blok berikutnya
 */
void POI::setNextBlock(Block position, Block next) {
	nextBlock[position] = next;
	writeAllocationTable(position);
}
/** mengatur Allocation Table */
void CCFS::setNextBlock(ptr_block position, ptr_block next) {
	nextBlock[position] = next;
	writeAllocationTable(position);
}