diff uicc/dispatch.c @ 134:69628bcfec17

fc-uicc-tool: iccid command implemented
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 04 Feb 2021 02:28:52 +0000
parents f3bdefbeae38
children 51d6aaa43a7b
line wrap: on
line diff
--- a/uicc/dispatch.c	Thu Feb 04 01:45:16 2021 +0000
+++ b/uicc/dispatch.c	Thu Feb 04 02:28:52 2021 +0000
@@ -9,6 +9,7 @@
 #include <stdlib.h>
 
 extern int cmd_exec();
+extern int cmd_iccid();
 extern int cmd_readbin();
 extern int cmd_readrec();
 extern int cmd_select();
@@ -24,6 +25,7 @@
 } cmdtab[] = {
 	{"exec", 1, 1, cmd_exec},
 	{"exit", 0, 0, good_exit},
+	{"iccid", 0, 0, cmd_iccid},
 	{"quit", 0, 0, good_exit},
 	{"readbin", 2, 2, cmd_readbin},
 	{"readrec", 2, 2, cmd_readrec},