blob: 977785c144f33311a12aa923aaaf81f2f9e96397 [file] [log] [blame]
Harald Welte3aa901d2018-08-13 18:32:36 +02001/*! \file main.c */
2/*
3 * (C) 2018 by Harald Welte <laforge@gnumonks.org>
4 *
5 * All Rights Reserved
6 *
7 * SPDX-License-Identifier: GPL-2.0+
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 *
23 */
24
25#include <string.h>
26#include <stdint.h>
27#include <stdio.h>
28#include <errno.h>
29
30#include <talloc.h>
31#include <osmocom/core/linuxlist.h>
32#include <osmocom/sim/sim.h>
33
34#include <wintypes.h>
35#include <winscard.h>
36
37#include "internal.h"
38
39int main(int argc, char **argv)
40{
41 card_readers_probe(NULL);
42}