chiark / gitweb /
server: docs: remove deprecated configuration and user upgrade.
[disorder] / lib / strptime.h
1 #ifndef STRPTIME_H
2 #define STRPTIME_H
3 /** @file lib/strptime.h
4  * @brief strptime() reimplementation
5  */
6
7 #include <time.h>
8
9 char *my_strptime(const char *buf,
10                   const char *format,
11                   struct tm *tm);
12
13 #endif /* STRPTIME_H */
14
15 /*
16 Local Variables:
17 c-basic-offset:2
18 comment-column:40
19 fill-column:79
20 indent-tabs-mode:nil
21 End:
22 */