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