mirror of
https://github.com/buserror/mii_emu.git
synced 2024-11-22 01:30:51 +00:00
3ee2a36d38
Removed big horrible global used by mish commands, now use the parameter made for it. Signed-off-by: Michel Pollet <buserror@gmail.com>
46 lines
808 B
C
46 lines
808 B
C
/*
|
|
* mii_mish_dd.c
|
|
*
|
|
* Copyright (C) 2023 Michel Pollet <buserror@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <ctype.h>
|
|
|
|
#include "mii.h"
|
|
|
|
|
|
static void
|
|
_mii_mish_dd(
|
|
void * param,
|
|
int argc,
|
|
const char * argv[])
|
|
{
|
|
mii_t * mii = param;
|
|
if (!argv[1] || !strcmp(argv[1], "list")) {
|
|
mii_dd_t *d = mii->dd.drive;
|
|
printf(" ID %-16s %-20s\n", "Card", "Name");
|
|
while (d) {
|
|
printf("%d:%d %-16s %-20s : %s\n",
|
|
d->slot_id, d->drive,
|
|
d->slot->drv->desc,
|
|
d->name, d->file ? d->file->pathname : "*empty*");
|
|
d = d->next;
|
|
}
|
|
return;
|
|
}
|
|
}
|
|
|
|
#include "mish.h"
|
|
|
|
MISH_CMD_NAMES(dd, "dd", "disk");
|
|
MISH_CMD_HELP(dd,
|
|
"mii: disk commands",
|
|
" <default>|list: list all disk drives"
|
|
);
|
|
MII_MISH(dd, _mii_mish_dd);
|