pcsc-lite
1.8.3
|
00001 /* 00002 * MUSCLE SmartCard Development ( http://www.linuxnet.com ) 00003 * 00004 * Copyright (C) 2003 00005 * Toni Andjelkovic <toni@soth.at> 00006 * Copyright (C) 2003-2009 00007 * Ludovic Rousseau <ludovic.rousseau@free.fr> 00008 * 00009 * $Id: parser.h 5434 2010-12-08 14:13:21Z rousseau $ 00010 */ 00011 00017 #ifndef __parser_h__ 00018 #define __parser_h__ 00019 00020 #include "simclist.h" 00021 00022 struct bundleElt 00023 { 00024 char *key; 00025 list_t values; 00026 }; 00027 00028 int LTPBundleFindValueWithKey(list_t *l, const char *key, list_t **values); 00029 int bundleParse(const char *fileName, list_t *l); 00030 void bundleRelease(list_t *l); 00031 00032 #endif