GME  13
svn_time.h
Go to the documentation of this file.
00001 
00027 #ifndef SVN_TIME_H
00028 #define SVN_TIME_H
00029 
00030 #include <apr_pools.h>
00031 #include <apr_time.h>
00032 
00033 #include "svn_error.h"
00034 
00035 #ifdef __cplusplus
00036 extern "C" {
00037 #endif /* __cplusplus */
00038 
00039 
00044 const char *
00045 svn_time_to_cstring(apr_time_t when,
00046                     apr_pool_t *pool);
00047 
00051 svn_error_t *
00052 svn_time_from_cstring(apr_time_t *when,
00053                       const char *data,
00054                       apr_pool_t *pool);
00055 
00059 const char *
00060 svn_time_to_human_cstring(apr_time_t when,
00061                           apr_pool_t *pool);
00062 
00063 
00072 svn_error_t *
00073 svn_parse_date(svn_boolean_t *matched,
00074                apr_time_t *result,
00075                const char *text,
00076                apr_time_t now,
00077                apr_pool_t *pool);
00078 
00079 
00086 SVN_DEPRECATED
00087 void
00088 svn_sleep_for_timestamps(void);
00089 
00090 #ifdef __cplusplus
00091 }
00092 #endif /* __cplusplus */
00093 
00094 #endif /* SVN_TIME_H */