diff options
author | Omar Polo <op@omarpolo.com> | 2023-08-23 19:39:27 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2023-08-23 19:39:27 +0000 |
commit | 01d3961d6f076d5668eac97e9d3e3d0812836730 (patch) | |
tree | 9721bc7164f1ac800b99efc454aa7089785b764e /have | |
parent | 74c6900c916b368b2f88d9f28cfdb5170cee5f6c (diff) |
adding forgotten file
Diffstat (limited to 'have')
-rw-r--r-- | have/ASN1_time_tm_clamp_notafter.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/have/ASN1_time_tm_clamp_notafter.c b/have/ASN1_time_tm_clamp_notafter.c new file mode 100644 index 0000000..18be22c --- /dev/null +++ b/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); +} |