mdiary/src/mdiary.h

13 lines
149 B
C

#ifndef MDIARY_H
#define MDIARY_H
#include <glib.h>
struct mdiary_entry {
gchar *title;
GDateTime *date;
gchar *tags;
};
#endif /* MDIARY_H */