summaryrefslogtreecommitdiff
path: root/vcard.c
diff options
context:
space:
mode:
authorAlon Levy <alevy@redhat.com>2010-11-25 09:44:58 +0200
committerAlon Levy <alevy@redhat.com>2010-12-09 13:35:38 +0200
commit7855787e65c1ba88452e276c50e3e9346e632c45 (patch)
tree30581ad9e0eb46b71c88c7c78c88ea45a89b86b1 /vcard.c
parent4fd3518b008b5bf38aba9927ae7e856ff336276d (diff)
libcaccard: coding style: 80 char column width, remove some tabs
Diffstat (limited to 'vcard.c')
-rw-r--r--vcard.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/vcard.c b/vcard.c
index ceabed5..2ac48f0 100644
--- a/vcard.c
+++ b/vcard.c
@@ -100,7 +100,8 @@ vcard_reset(VCard *card, VCardPower power)
*/
/* constructor */
VCardApplet *
-vcard_new_applet(VCardProcessAPDU applet_process_function, VCardResetApplet applet_reset_function,
+vcard_new_applet(VCardProcessAPDU applet_process_function,
+ VCardResetApplet applet_reset_function,
unsigned char *aid, int aid_len)
{
VCardApplet *applet;
@@ -300,10 +301,12 @@ vcard_get_current_applet_private(VCard *card, int channel)
}
VCardStatus
-vcard_process_applet_apdu(VCard *card, VCardAPDU *apdu, VCardResponse **response)
+vcard_process_applet_apdu(VCard *card, VCardAPDU *apdu,
+ VCardResponse **response)
{
if (card->current_applet[apdu->a_channel]) {
- return card->current_applet[apdu->a_channel]->process_apdu(card,apdu,response);
+ return card->current_applet[apdu->a_channel]->process_apdu(
+ card, apdu, response);
}
return VCARD_NEXT;
}