Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
1234567891011121314 |
- struct floppy_drive {
- char type[16];
- u8 status;
- };
-
- struct floppy_info {
- int count;
- struct floppy_drive drive[2];
- };
-
- int floppy_get_info(struct floppy_info *floppy_info);
- void floppy_print_info(struct floppy_info *floppy_info);
-
- int floppy_get_status(void);
|