Do not export nfc_parse_device_desc() in libnfc API.

This commit is contained in:
Romuald Conty 2010-07-22 16:13:02 +00:00
parent 4bc522cd1e
commit c4bb23631b
5 changed files with 48 additions and 44 deletions

View file

@ -24,9 +24,14 @@
#ifndef _EXAMPLES_NFC_UTILS_H_
#define _EXAMPLES_NFC_UTILS_H_
#include <stdlib.h>
#include <string.h>
void print_hex(const byte_t* pbtData, const size_t szLen);
void print_hex_bits(const byte_t* pbtData, const size_t szBits);
void print_hex_par(const byte_t* pbtData, const size_t szBits, const byte_t* pbtDataPar);
void print_nfc_iso14443a_info(const nfc_iso14443a_info_t nai);
nfc_device_desc_t* parse_device_desc(int argc, const char *argv[], size_t* szFound);
#endif