FreeCalypso > hg > freecalypso-hwlab
view simtool/main.c @ 88:91486a77643e
fc-simtool: implement hex display of full SIM responses
| author | Mychaela Falconia <falcon@freecalypso.org> | 
|---|---|
| date | Sun, 24 Jan 2021 05:09:48 +0000 | 
| parents | b57cf64ece29 | 
| children | b391204d3cd5 | 
line wrap: on
 line source
#include <sys/types.h> #include <stdio.h> #include <stdlib.h> #include <pcsclite.h> #include <winscard.h> #include "globals.h" main(argc, argv) char **argv; { char command[512]; setup_pcsc_context(); get_reader_name(); printf("Card reader name: %s\n", reader_name_buf); connect_to_card(); retrieve_atr(); for (;;) { if (isatty(0)) { fputs("simtool> ", stdout); fflush(stdout); } if (!fgets(command, sizeof command, stdin)) cmd_exit(); simtool_dispatch_cmd(command); } }
