From db67f9a9560f36480659cb6e74f1314a4881e09b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Mon, 20 Oct 2008 17:17:58 +0000 Subject: [PATCH] Since in_lt() and in_lts() are not static, assume that they are intended to be part of the public API. Accordingly, add prototypes and document them. --- libutil/login_cap.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libutil/login_cap.h b/libutil/login_cap.h index 2e3d3e8..082e34b 100644 --- a/libutil/login_cap.h +++ b/libutil/login_cap.h @@ -146,8 +146,10 @@ int auth_timeok(login_cap_t *, time_t); struct tm; login_time_t parse_lt(const char *); +int in_lt(const login_time_t *, time_t *); int in_ltm(const login_time_t *, struct tm *, time_t *); int in_ltms(const login_time_t *, struct tm *, time_t *); +int in_lts(const login_time_t *, time_t *); /* helper functions */ -- 2.47.1