You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
280 B
C

#pragma once
#include <time.h>
#include <stdio.h>
struct marker
{
char* last_read_marker;
int version;
time_t updated_at;
};
struct marker* marker_from_name( const char* name );
void marker_free( struct marker* m );
void marker_write_to_FILE( struct marker* m, FILE* f );