electronicsguy

sscanf.h

Apr 6th, 2017
621
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.41 KB | None | 0 0
  1. #ifndef SSCANF_H
  2. #define SSCANF_H
  3.  
  4. #include <cstdio>
  5. #include <cstdarg>
  6. #include <cstring>
  7. #include <cctype>
  8. #include <cstdint>
  9.  
  10.  
  11. // Prototypes
  12. size_t strcspn (const char *, const char *);
  13. char * _getbase(char *, int *);
  14. int _atob (uint32_t *, char *, int);
  15. int atob(uint32_t *, char *, int);
  16. int vsscanf (const char *, const char *, va_list);
  17. int sscanf (const char *, const char *, ...);
  18.  
  19. #endif
Add Comment
Please, Sign In to add comment