Reading and writing Das2 Stream objects to standard I/O. More...
Reading and writing Das2 Stream objects to standard I/O.
#include <stdio.h>
#include <zlib.h>
#include <das2/stream.h>
#include <das2/oob.h>
#include <das2/processor.h>
Go to the source code of this file.
Data Structures | |
struct | DasIO |
Tracks input and output operations for das2 stream headers and data. More... | |
Functions | |
void | del_DasIO (DasIO *pThis) |
Free resources associated with a DasIO structure Typically you don't need to do this as heap memory is free'ed when the program exits anyway. | |
const char * | LogLvl_string (int logLevel) |
Returns a string identifying the log level. |
void del_DasIO | ( | DasIO * | pThis | ) |
Free resources associated with a DasIO structure Typically you don't need to do this as heap memory is free'ed when the program exits anyway.
But if you need a destructor, here it is.
pThis | The DasIO abject to delete. Any associated file handles except for standard input and standard output are closed. The pointer given to this function should be set to NULL after the function completes. |
const char* LogLvl_string | ( | int | logLevel | ) |
Returns a string identifying the log level.
logLevel | a log level value as defined in DasIO_setLogLvl() | |
a | string such as 'error', 'warning', etc. |