aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/ClassDriver/CCID/Lib/Iso7816.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2018-06-24 16:41:58 +1000
committerDean Camera <dean@fourwalledcubicle.com>2018-06-24 16:41:58 +1000
commitbc57f4ea5afd29f2e0f0175d14cf1540b4408de8 (patch)
tree1d393db9904884112e42b80017a04a777449b80f /Demos/Device/ClassDriver/CCID/Lib/Iso7816.h
parent8e590e6cb3013ab3e317e219031b326df16fb6dc (diff)
downloadlufa-bc57f4ea5afd29f2e0f0175d14cf1540b4408de8.tar.gz
lufa-bc57f4ea5afd29f2e0f0175d14cf1540b4408de8.tar.bz2
lufa-bc57f4ea5afd29f2e0f0175d14cf1540b4408de8.zip
Reformatting and add const qualifiers.
Diffstat (limited to 'Demos/Device/ClassDriver/CCID/Lib/Iso7816.h')
-rw-r--r--Demos/Device/ClassDriver/CCID/Lib/Iso7816.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Demos/Device/ClassDriver/CCID/Lib/Iso7816.h b/Demos/Device/ClassDriver/CCID/Lib/Iso7816.h
index f5fc1d70a..2a5570629 100644
--- a/Demos/Device/ClassDriver/CCID/Lib/Iso7816.h
+++ b/Demos/Device/ClassDriver/CCID/Lib/Iso7816.h
@@ -36,7 +36,9 @@
#include <avr/power.h>
#include <avr/interrupt.h>
#include <stdlib.h>
+ #include <string.h>
/* Function Prototypes: */
- void Iso7816_CreateSimpleAtr(uint8_t* attr, uint8_t* attrLength);
+ void Iso7816_CreateSimpleAtr(uint8_t* const attr,
+ uint8_t* const attrLength);
#endif