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