Changeset c2b0e10 in mainline for uspace/lib/posix/time.h
- Timestamp:
- 2012-04-23T21:42:27Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5b3394c
- Parents:
- cb948777
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/time.h
rcb948777 rc2b0e10 91 91 92 92 /* Broken-down Time */ 93 extern time_t posix_mktime(struct tm *tm);94 93 extern struct tm *posix_gmtime(const time_t *timer); 95 94 extern struct tm *posix_gmtime_r(const time_t *restrict timer, … … 105 104 extern char *posix_ctime(const time_t *timer); 106 105 extern char *posix_ctime_r(const time_t *timer, char *buf); 107 extern size_t posix_strftime(char *restrict s, size_t maxsize,108 const char *restrict format, const struct tm *restrict tm);109 106 110 107 /* Clocks */ … … 133 130 #define difftime posix_difftime 134 131 135 #define mktime posix_mktime136 132 #define gmtime posix_gmtime 137 133 #define gmtime_r posix_gmtime_r … … 143 139 #define ctime posix_ctime 144 140 #define ctime_r posix_ctime_r 145 #define strftime posix_strftime146 141 147 142 #define clock_getres posix_clock_getres
Note:
See TracChangeset
for help on using the changeset viewer.