diff options
author | Adam Chlipala <adam@chlipala.net> | 2010-12-20 13:22:44 -0500 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2010-12-20 13:22:44 -0500 |
commit | 5c17ca9d7f867c45144600ec7e6e7af0134191d7 (patch) | |
tree | 021c30b2de4116401239e0dd59f0844a99e92e07 /include | |
parent | 5f3771069b5e4c7e99b1c1bbe98de2e8e7b96161 (diff) |
Use proper string time format for SQLite
Diffstat (limited to 'include')
-rw-r--r-- | include/urweb.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/urweb.h b/include/urweb.h index 9314d089..4c86e7ec 100644 --- a/include/urweb.h +++ b/include/urweb.h @@ -295,4 +295,8 @@ extern int uw_time_max, uw_supports_direct_status, uw_min_heap; failure_kind uw_runCallback(uw_context, void (*callback)(uw_context)); +uw_Basis_string uw_Basis_timeToStringf(uw_context, const char *fmt, uw_Basis_time); +uw_Basis_time uw_Basis_stringToTimef(uw_context, const char *fmt, uw_Basis_string); +uw_Basis_time uw_Basis_stringToTimef_error(uw_context, const char *fmt, uw_Basis_string); + #endif |