summaryrefslogtreecommitdiff
path: root/src/strptime.h
diff options
context:
space:
mode:
authorTim Crews <tim@code-affinity.com>2013-06-14 21:29:47 -0700
committerTim Crews <tim@code-affinity.com>2013-06-14 21:29:47 -0700
commit0dbb38fe27e81790451a8233c5959e0fe26dc5ee (patch)
tree0af89e3e10e5c4fe7de0070e9e6ccc6cb8ee7d93 /src/strptime.h
parentfe810fa13f1e814e69dee2484c8b2878d5101d6c (diff)
downloadfork-ledger-0dbb38fe27e81790451a8233c5959e0fe26dc5ee.tar.gz
fork-ledger-0dbb38fe27e81790451a8233c5959e0fe26dc5ee.tar.bz2
fork-ledger-0dbb38fe27e81790451a8233c5959e0fe26dc5ee.zip
Source changes needed for Microsoft Visual C++ compatibility.
Includes an implementation of strptime, compiled only for Win32 platform.
Diffstat (limited to 'src/strptime.h')
-rw-r--r--src/strptime.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/strptime.h b/src/strptime.h
new file mode 100644
index 00000000..f5482201
--- /dev/null
+++ b/src/strptime.h
@@ -0,0 +1,6 @@
+#ifndef STRPTIME_H
+#define STRPTIME_H
+
+char* strptime(const char *buf, const char *fmt, struct tm *tm);
+
+#endif \ No newline at end of file