diff uicc/dispatch.c @ 139:c13ed9194ecd

fc-uicc-tool create-file implemented
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 24 Feb 2021 17:08:37 +0000
parents 58406ead2497
children 13ab44761ea6
line wrap: on
line diff
--- a/uicc/dispatch.c	Tue Feb 23 02:34:46 2021 +0000
+++ b/uicc/dispatch.c	Wed Feb 24 17:08:37 2021 +0000
@@ -11,6 +11,7 @@
 extern int cmd_apdu();
 extern int cmd_cd();
 extern int cmd_change_pin();
+extern int cmd_create_file();
 extern int cmd_dir();
 extern int cmd_disable_pin();
 extern int cmd_enable_pin();
@@ -47,6 +48,7 @@
 	{"atr", 0, 0, 0, retrieve_atr},
 	{"cd", 1, 1, 0, cmd_cd},
 	{"change-pin", 3, 3, 0, cmd_change_pin},
+	{"create-file", 1, 1, 0, cmd_create_file},
 	{"dir", 0, 0, 1, cmd_dir},
 	{"disable-pin", 2, 2, 0, cmd_disable_pin},
 	{"enable-pin", 2, 2, 0, cmd_enable_pin},