Go to the documentation of this file.00001 #ifndef BINSCANF_HPP
00002 #define BINSCANF_HPP
00003
00004 #include <stdio.h>
00005 #include <stdarg.h>
00006 #include <string.h>
00007 #include <ctype.h>
00008 #include <vector>
00009 int
00010 binSscanf(const char *fmt, ...);
00011 int
00012 binScanfVec(const std::vector<unsigned char> *vec, const char *fmt, ...);
00013 int
00014 binSscanf(const char *buf, const char *fmt, ...);
00015 int binScanfGuessDataLenFromMask(const char *scanfMask);
00016 #endif