Skip to content
Snippets Groups Projects
Commit 1176b1a2 authored by Loic Hausammann's avatar Loic Hausammann
Browse files

Add comments to structures

parent d2d213bb
No related branches found
No related tags found
1 merge request!685Logger loader
......@@ -8,10 +8,19 @@ typedef char timebin_t;
typedef long long integertime_t;
struct time_array {
/* Pointer to next element */
void *next;
/* Pointer to prev element */
void *prev;
/* Integertime of this timestamp */
integertime_t timestamp;
/* Double time of this timestamp */
double time;
/* Offset in the file of this timestamp */
size_t offset;
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment