FreeCalypso > hg > fc-pcsc-tools
view misc/fc-pcsc-atr.c @ 29:d368051576d0
fc-simtool & fc-uicc-tool: add explicit atr command
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Fri, 12 Feb 2021 16:19:11 +0000 |
| parents | 4bd6275d7c79 |
| children | 84d1c31d0fad |
line wrap: on
line source
#include <stdio.h> #include <stdlib.h> #include <pcsclite.h> #include <winscard.h> #include "cardif.h" main(argc, argv) char **argv; { int rc; setup_pcsc_context(); get_reader_name(); printf("Card reader name: %s\n", reader_name_buf); connect_to_card(); rc = retrieve_atr(); if (rc) error_exit(); else good_exit(); }
