Sort and sync lists.

This commit is contained in:
Romain Tartière 2015-05-11 18:57:56 +02:00
parent 27c7cd9217
commit 89e5344b91
2 changed files with 7 additions and 5 deletions

View file

@ -52,9 +52,11 @@ Mifare card manipulation library (libfreefare, \-lfreefare)
.Fn freefare_get_tags "nfc_device_t *device"
.Bd -literal
enum freefare_tag_type {
ULTRALIGHT,
CLASSIC_1K,
CLASSIC_4K
CLASSIC_4K,
DESFIRE,
ULTRALIGHT,
ULTRALIGHT_C,
};
.Ed
.Ft "enum freefare_tag_type"

View file

@ -31,16 +31,16 @@
#endif // __cplusplus
enum freefare_tag_type {
ULTRALIGHT,
ULTRALIGHT_C,
// MINI,
CLASSIC_1K,
CLASSIC_4K,
DESFIRE,
// PLUS_S2K,
// PLUS_S4K,
// PLUS_X2K,
// PLUS_X4K,
DESFIRE
ULTRALIGHT,
ULTRALIGHT_C,
};
struct freefare_tag;