Changeset 664fc031 in mainline for uspace/lib/c/include/sys/time.h
- Timestamp:
- 2012-08-22T18:53:13Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2e6293b
- Parents:
- 077dad2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/sys/time.h
r077dad2 r664fc031 81 81 82 82 extern time_t mktime(struct tm *tm); 83 extern int utctime2tm(const time_t time, struct tm *result);84 extern int utctime2str(const time_t time, char *buf);85 extern void t m2str(const struct tm *timeptr, char *buf);86 extern int localtime2tm(const time_t time, struct tm *result);87 extern int localtime2str(const time_t time, char *buf);83 extern int time_utc2tm(const time_t time, struct tm *result); 84 extern int time_utc2str(const time_t time, char *buf); 85 extern void time_tm2str(const struct tm *timeptr, char *buf); 86 extern int time_local2tm(const time_t time, struct tm *result); 87 extern int time_local2str(const time_t time, char *buf); 88 88 extern double difftime(time_t time1, time_t time0); 89 89 extern size_t strftime(char *restrict s, size_t maxsize,
Note:
See TracChangeset
for help on using the changeset viewer.