summary refs log tree commit diff stats
path: root/atom.c
diff options
context:
space:
mode:
authorAli Fardan <raiz@stellarbound.space>2020-11-04 14:23:47 +0300
committerAli Fardan <raiz@stellarbound.space>2020-11-04 14:23:47 +0300
commiteb1a7e0e8d802423cc3aa1ff6db81923df2f3045 (patch)
tree10248a4a079d6d00ed1b418c3d3b6f87a906ad29 /atom.c
parentb9b2ae68e26ef1b1b033d4231f8d7e53244cebff (diff)
downloadgemlog-master.tar.gz
add HTML index generator HEAD master
Diffstat (limited to 'atom.c')
-rw-r--r--atom.c13
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;
+}