-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcurr_time.h
20 lines (16 loc) · 872 Bytes
/
curr_time.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*************************************************************************\
* Copyright (C) Michael Kerrisk, 2024. *
* *
* This program is free software. You may use, modify, and redistribute it *
* under the terms of the GNU Lesser General Public License as published *
* by the Free Software Foundation, either version 3 or (at your option) *
* any later version. This program is distributed without any warranty. *
* See the files COPYING.lgpl-v3 and COPYING.gpl-v3 for details. *
\*************************************************************************/
/* curr_time.h
Header file for curr_time.c.
*/
#ifndef CURR_TIME_H
#define CURR_TIME_H /* Prevent accidental double inclusion */
char *currTime(const char *fmt);
#endif