123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- #ifndef FBXUTIL_H
- #define FBXUTIL_H
- #include "FBXTokenizer.h"
- #include <stdint.h>
- namespace FBXDocParser {
- namespace Util {
- const char *TokenTypeString(TokenType t);
- uint8_t DecodeBase64(char ch);
- size_t ComputeDecodedSizeBase64(const char *in, size_t inLength);
- size_t DecodeBase64(const char *in, size_t inLength, uint8_t *out, size_t maxOutLength);
- char EncodeBase64(char byte);
- std::string EncodeBase64(const char *data, size_t length);
- }
- }
- #endif
|