Commit Diff


commit - 74c6900c916b368b2f88d9f28cfdb5170cee5f6c
commit + 01d3961d6f076d5668eac97e9d3e3d0812836730
blob - /dev/null
blob + 18be22c39361c276a8907cefbd0d80f60560302c (mode 644)
--- /dev/null
+++ have/ASN1_time_tm_clamp_notafter.c
@@ -0,0 +1,29 @@
+/*
+ * Copyright (c) 2023 Omar Polo <op@omarpolo.com>
+ *
+ * Permission to use, copy, modify, and 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.
+ */
+
+#include <stdlib.h>
+
+#include <openssl/asn1.h>
+
+struct tm;
+
+int ASN1_time_tm_clamp_notafter(struct tm *tm);
+
+int
+main(void)
+{
+	return ASN1_time_tm_clamp_notafter(NULL);
+}