commit 01d3961d6f076d5668eac97e9d3e3d0812836730 from: Omar Polo date: Wed Aug 23 19:39:27 2023 UTC adding forgotten file 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 + * + * 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 + +#include + +struct tm; + +int ASN1_time_tm_clamp_notafter(struct tm *tm); + +int +main(void) +{ + return ASN1_time_tm_clamp_notafter(NULL); +}