FreeCalypso > hg > fc-sim-tools
view pcsc/rdlist.c @ 53:fbedb67d234f
serial: fix parity for inverse coding convention
Important note: it is my (Mother Mychaela's) understanding that
SIM cards with inverse coding convention are extremely rare,
and I have never seen such a card. Therefore, our support for
the inverse coding convention will likely remain forever untested.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 21 Mar 2021 20:46:09 +0000 |
parents | f4479a0d4cea |
children |
line wrap: on
line source
#include <string.h> #include <strings.h> #include <stdio.h> #include <stdlib.h> #include <pcsclite.h> #include <winscard.h> extern SCARDCONTEXT hContext; extern char *reader_list; main(argc, argv) char **argv; { char *cp; unsigned num; setup_pcsc_context(); get_reader_list(); for (cp = reader_list, num = 0; *cp; num++) { printf("#%u: %s\n", num, cp); cp += strlen(cp) + 1; } SCardReleaseContext(hContext); exit(0); }