diff paste.h @ 0:15a06aa20298

misc: initial import
author David Demelier <markand@malikania.fr>
date Tue, 04 Feb 2020 13:35:52 +0100
parents
children 75cfe3795de3
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/paste.h	Tue Feb 04 13:35:52 2020 +0100
@@ -0,0 +1,49 @@
+/*
+ * paste.h -- paste definition
+ *
+ * Copyright (c) 2020 David Demelier <markand@malikania.fr>
+ * 
+ * Permission to use, copy, modify, and/or distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ * 
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#ifndef PASTER_PASTE_H
+#define PASTER_PASTE_H
+
+#include <stdbool.h>
+#include <time.h>
+
+#define PASTE_HOUR      3600          /*!< Seconds in one hour. */
+#define PASTE_DAY       86400         /*!< Seconds in one day. */
+#define PASTE_WEEK      604800        /*!< Seconds in one week. */
+#define PASTE_MONTH     18144400      /*!< Rounded to 30 days. */
+
+/**
+ * \brief Paste structure.
+ *
+ * Every string in the paste is assumed to be allocated on the heap.
+ */
+struct paste {
+	char *uuid;
+	char *title;
+	char *author;
+	char *language;
+	char *code;
+	time_t timestamp;
+	bool visible;
+        long long int duration;
+};
+
+void
+paste_finish(struct paste *paste);
+
+#endif /* !PASTER_PASTE_H */