diff options
author | Ali Fardan <raiz@stellarbound.space> | 2020-11-04 14:23:47 +0300 |
---|---|---|
committer | Ali Fardan <raiz@stellarbound.space> | 2020-11-04 14:23:47 +0300 |
commit | eb1a7e0e8d802423cc3aa1ff6db81923df2f3045 (patch) | |
tree | 10248a4a079d6d00ed1b418c3d3b6f87a906ad29 /atom.c | |
parent | b9b2ae68e26ef1b1b033d4231f8d7e53244cebff (diff) | |
download | gemlog-master.tar.gz |
Diffstat (limited to 'atom.c')
-rw-r--r-- | atom.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/atom.c b/atom.c new file mode 100644 index 0000000..818ed46 --- /dev/null +++ b/atom.c @@ -0,0 +1,13 @@ +#include <time.h> + +#include <gemtext.h> + +#include "gemlog.h" + +int +gemlog_write_atom(struct gemlog_entry **feed, const char *path) +{ + (void)feed; + (void)path; + return -1; +} |