| zipios 2.3.4
    Zipios -- a small C++ library providing easy access to .zip files. | 
Various functions used throughout the library. More...

Go to the source code of this file.
| Namespaces | |
| namespace | zipios | 
| The zipios namespace includes the Zipios library definitions. | |
| Functions | |
| void | zipios::zipRead (buffer_t const &is, size_t &pos, buffer_t &buffer, ssize_t const count) | 
| void | zipios::zipRead (buffer_t const &is, size_t &pos, std::string &str, ssize_t const count) | 
| void | zipios::zipRead (buffer_t const &is, size_t &pos, uint16_t &value) | 
| void | zipios::zipRead (buffer_t const &is, size_t &pos, uint32_t &value) | 
| void | zipios::zipRead (buffer_t const &is, size_t &pos, uint8_t &value) | 
| void | zipios::zipRead (std::istream &is, buffer_t &buffer, ssize_t const count) | 
| void | zipios::zipRead (std::istream &is, std::string &str, ssize_t const count) | 
| void | zipios::zipRead (std::istream &is, uint16_t &value) | 
| void | zipios::zipRead (std::istream &is, uint32_t &value) | 
| void | zipios::zipRead (std::istream &is, uint8_t &value) | 
| void | zipios::zipWrite (std::ostream &os, buffer_t const &buffer) | 
| void | zipios::zipWrite (std::ostream &os, std::string const &str) | 
| void | zipios::zipWrite (std::ostream &os, uint16_t const &value) | 
| void | zipios::zipWrite (std::ostream &os, uint32_t const &value) | 
| void | zipios::zipWrite (std::ostream &os, uint8_t const &value) | 
| Variables | |
| char const | zipios::g_separator = '/' | 
| The character used as the filename separator. | |
This file defines the Zipios common functions that are used throughout the zipios library. At this point it is mainly the low level I/O function to read and write to files or buffers.
Definition in file zipios_common.cpp.