PKUOS - Pintos
Pintos source browser for PKU Operating System course
partition.h
Go to the documentation of this file.
1#ifndef DEVICES_PARTITION_H
2#define DEVICES_PARTITION_H
3
4struct block;
5
6void partition_scan (struct block *);
7
8#endif /**< devices/partition.h */
void partition_scan(struct block *)
devices/partition.h
Definition: partition.c:28
A block device.
Definition: block.c:10